{"info":{"_postman_id":"09cbeb08-240d-4650-acad-ae127896c96a","name":"Brandworkz API (v1.6)","description":"<html><head></head><body><p>The Brandworkz API allows you to interact with the data stored within your Brandworkz system. It is intended for developers who are writing standalone applications or integrations that incorporate content from Brandworkz.</p>\n<h4 id=\"prerequisites\">Prerequisites</h4>\n<p>Before getting started, a consumer ID and secret are required to be able to perform requests to the API.</p>\n<blockquote>\n<p>If you do not have these access details yet, please contact your primary Brandworkz point of contact.</p>\n</blockquote>\n<p>The easiest way to get started with the API is to click the <a href=\"https://www.getpostman.com/docs/run_button_ux\"><em>Run in Postman</em></a> button present at the top of the documentation page and use the Postman App to send requests. Note that you need to have a Postman account and be logged in for the button to be present.</p>\n<h1 id=\"overview\">Overview</h1>\n<ol>\n<li><p>The</p>\n<p> <a href=\"#authentication\">authentication</a></p>\n<p> consists of calling an initial <code>/getAPIURL</code> endpoint, followed by requesting an access token.</p>\n</li>\n<li><p>Such access token is then used for subsequent calls.</p>\n</li>\n<li><p>The Brandworkz API will only respond to secured communications done over HTTPS. HTTP requests will send a <code>301</code> redirect to the corresponding HTTPS resources.</p>\n</li>\n<li><p>The response to every request is sent in <a href=\"https://en.wikipedia.org/wiki/JSON\">JSON format</a> by default. Some endpoints have the option for an HTML response, too. This is specified by sending the <code>format</code> query parameter or the <code>Accept</code> header.</p>\n</li>\n<li><p>In case an API request results in an error, it will return a code and a description about what happened. See the</p>\n<p> <a href=\"#error-handling\">Error Handling</a></p>\n<p> section.</p>\n</li>\n</ol>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The Brandworkz API uses <a href=\"https://oauth.net/2/\">OAuth 2.0</a> + <a href=\"https://jwt.io/\">JSON Web Tokens</a>. Please follow the below steps to successfully authenticate within the system.</p>\n<h2 id=\"step-1-get-api-details\">Step 1: Get API details</h2>\n<p>Before authenticating, you will need to obtain your <code>client_id</code>, <code>api_url</code> and <code>api_version</code> from the <code>https://api.brandworkz.com/getAPIURL</code> endpoint. This is needed to request access tokens and call subsequent API endpoints.</p>\n<p>Note that /getAPIURL is a global endpoint which should always be called on <a href=\"https://api.brandworkz.com/getAPIURL\">https://api.brandworkz.com/getAPIURL</a> regardless of whether you are developing against a production or qa site and regardless of which geographical hosting location your site is in. However, for ALL subsequent endpoints you should call the domain and intial path returned from this call which may or may not be the same as the above domain.</p>\n<p>To use this endpoint, you will need to pass the URL of your Brandworkz 'staging' or 'live' site via the <code>clientURL</code> parameter.</p>\n<p>For example, <a href=\"https://api.brandworkz.com/getAPIURL?clientURL=mycompanyname.brandworkz.com\">https://api.brandworkz.com/getAPIURL?clientURL=mycompanyname.brandworkz.com</a><br>and below is an example of the JSON response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n    \"result\": {\n        \"message\": \"Success\",\n        \"code\": 0\n    },\n    \"data\": {\n        \"api_url\": \"https://us-api.brandworkz.com\",\n        \"client_id\": \"brandworkz_mycompanyname\",\n        \"version\": \"1.6\"\n    }\n}\n\n</code></pre>\n<p><code>api_url</code>: The base URL that needs to be used for all subsequent endpoint API calls.</p>\n<p><code>client_id</code>: This is an identifier, specific for each client.</p>\n<p><code>api_version</code>: The current API version.</p>\n<blockquote>\n<p><strong>Important:</strong> These three values must always be set dynamically using the <code>getAPIURL</code> call and never be hard-coded. If you hardcode any of these then either subsequent calls won't work at all or they will stop working at some point in the future when we retire the current API version.</p>\n</blockquote>\n<p>These three variables should be used at the beginning of every call as follows:<br><code>{{api_url}}/v{{api_version}}/{{client_id}}/endpoint</code></p>\n<blockquote>\n<p><strong>Tip:</strong> For ease of use inside Postman, you should store the above as <a href=\"https://www.getpostman.com/docs/environments\">environment variables</a>. Then always run the <code>/getAPIURL</code> followed by the <code>/oauth/token</code> call before making any other API calls. More info on setting up Postman variables can be found <a href=\"https://developers.onelogin.com/api-docs/1/getting-started/postman-collections\">here</a>.</p>\n</blockquote>\n<h2 id=\"step-2-get-a-token\">Step 2: Get a token</h2>\n<p>Once you have the API details, you can either request a token directly (2a below), or you can use the authentication code flow to get a code and request a token at a later time (2b below).<br>If your Brandworkz instance has SAML SSO users then you must use code flow.</p>\n<p>Note that the below <code>/oauth/...</code> authorisation endpoints are different from the functional endpoints as they do not have the api_version and client_id specified in the path. They are unversioned and should have the client_id passed in through the client DB parameter as per below. However you should still use the API domain from /getAPIURL</p>\n<h3 id=\"2a-request-an-access-token-directly\">2a: Request an access token directly</h3>\n<p>Once you have the above API details and your consumer ID and secret as mentioned in the prerequisites section, you will be able to request an access token as follows:</p>\n<blockquote>\n<p>Please bear in mind that this endpoint call is a POST and can't be pasted in a browser, so this is a <a href=\"https://curl.haxx.se/\">cURL</a> command that can be executed in a console.</p>\n</blockquote>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl \\\\\n    -u {{consumer_id}}:{{consumer_secret}} \\\\\n    -X POST \"{{api_url}}/oauth/token\" \\\\\n    -H \"Accept: application/json;charset=UTF-8\" \\\\\n    -H \"Content-Type: application/x-www-form-urlencoded\" \\\\\n    -d \"grant_type=password&amp;client_db={{client_id}}&amp;username={{user_login}}&amp;password={{user_password}}\"\n\n</code></pre><p>For example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl \\\\\n    -u mybrandsite-live:j9dueY5RReqa95dMq \\\\\n    -X POST \"https://us-api.brandworkz.com/oauth/token\" \\\\\n    -H \"Accept: application/json;charset=UTF-8\" \\\\\n    -H \"Content-Type: application/x-www-form-urlencoded\" \\\\\n    -d \"grant_type=password&amp;client_db=brandworkz_mycompanyname&amp;username=bobbySmith&amp;password=dl_8MrTjja\"\n\n</code></pre><p><code>user_login</code> and <code>user_password</code> must be an existing user on your site.</p>\n<p>An access token will be returned as part of the response:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"access_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjZGIiOiJicmFuZHdvcmt6X215YnJhbmRzaXRlIi...\",\n  \"token_type\": \"bearer\",\n  \"refresh_token\": \"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJjZGIiOiJicmFuZHdvcmt6X215YnJhbmRzaXRlIi...\",\n  \"expires_in\": 1200,\n  \"scope\": \"read write\",\n  \"cdb\": \"brandworkz_mycompanyname\",\n  \"uid\": 5081,\n  \"sid\": \"b68c2984-7aa7-408f-89e4-3a5fde42ae9a\",\n  \"jti\": \"78c48e66-6d4a-4ea9-a3e5-6cd1dba30b29\"\n}\n\n</code></pre>\n<h3 id=\"2b-using-authentication-code-flow\">2b: Using authentication code flow</h3>\n<h4 id=\"initial-endpoint\">Initial Endpoint</h4>\n<p>In order to get a code, the user's browser should be redirected to an initial endpoint to start the process.</p>\n<p>The initial endpoint is: <code>{{api_url}}/oauth/authorize</code></p>\n<p>This endpoint requires a number of parameters, which are:</p>\n<ul>\n<li>clientDb - This is the \"client_id\" from getAPIURL</li>\n<li>response_type - This should have the value, \"code\" to indicate that you wish to use the authentication code flow process to authenticate.</li>\n<li>client_id - Your consumer Id, i.e. NOT the \"client_id\" returned from getAPIURL.</li>\n<li>scope - The scope of the authentication, this should be set to, \"read\".</li>\n<li>redirect_uri - This is the URI that the code will be sent to once the user has authenticated and approved the request.</li>\n</ul>\n<p>Endpoint example:<br><code>{{api_url}}/oauth/authorize?clientDb={{client_id}}&amp;response_type=code&amp;client_id={{consumerID}&amp;scope=read&amp;redirect_uri={{Your Redirect URI, to process the Auth code}}</code></p>\n<p>After visiting that endpoint, the user's browser will be redirected to our login form page, where they can enter their Brandworkz login credentials.</p>\n<h4 id=\"approval\">Approval</h4>\n<p>After the user has authenticated, they are redirected to an approval screen, as they will need to approve the use of the integration that initiated the process.</p>\n<p>The user will need to select \"Authorize\", in order to proceed and generate a code.</p>\n<p>If the user selects \"Deny\" from the approval screen, then they will be redirected to the initial redirect URI, with the following parameters:</p>\n<p><code>[Your Redirect URI]/?error=access_denied&amp;error_description=User denied access</code></p>\n<p>When the user selects \"Authorize\", they will then get redirected to the initial redirect URI, but with the code attached as a parameter, e.g.<br><code>[Your Redirect URI]/?code=qRcX8q</code></p>\n<h4 id=\"using-the-code\">Using the code</h4>\n<p>The code generated in the previous step can then be used to generate a token. For example, using curl:</p>\n<p><code>curl -u \"[Consumer ID]:[Secret]\" -X POST \"[API URL]/oauth/token\" -H \"Accept: application/json;charset=UTF-8\" -H \"Content-Type: application/x-www-form-urlencoded\" -d 'grant_type=authorization_code&amp;client_db=[Client DB]&gt;&amp;code=qRcX8q&amp;redirect_uri=[Your Redirect URI]'</code></p>\n<p>All of the parameters in the call to get the token should match those that were given in the initial endpoint, although note that in the above call <code>client_db</code> should be used as the parameter name as opposed to <code>clientDb</code> in <code>/oauth/authorize</code></p>\n<h2 id=\"step-3-use-the-access-token\">Step 3: Use the access token</h2>\n<p>In order to make subsequent endpoint calls which require authentication, the only thing you have to do is to specify the access token as the <code>Authorization</code> request header, as follows:</p>\n<p><code>Authorization: Bearer {{access_token}}</code></p>\n<p>Such access token will be valid for the number of seconds specified in <code>expires_in</code> when requesting it. In order to renew it, you just need to use the refresh token changing the grant type. For more information, please check out the <a href=\"https://www.oauth.com/oauth2-servers/access-tokens/refreshing-access-tokens/\">official OAuth 2.0 documentation</a> on how to do this.</p>\n<h1 id=\"search-and-browse\">Search and Browse</h1>\n<p>If you are doing an integration where the end-user needs to search and/or browse for assets, e.g. to insert images or videos ad-hoc into a 3rd party CMS or eCommerce app, then there are two ways to do it:</p>\n<ol>\n<li>The preferred way is to use our out-of-the-box UI for this via the <code>/assetInsert</code> API endpoint</li>\n<li>If for any reason, you can't use the previous option, you can construct a search/browse UI \"manually\" via the <code>/simpleSearch</code> endpoint.</li>\n</ol>\n<h2 id=\"searchbrowse-ui-via-assetinsert\">Search/Browse UI via /assetInsert</h2>\n<p>The <code>/assetinsert</code> endpoint will return a complete HTML/React app very similar to the main search in the web-UI, complete with keyword search, search facets, folder browsing, asset detail view, and download options. This app can be embedded in e.g. a pop-up or iframe in the 3rd party app, and have parameters to limit it to show only certain filetypes or files uploaded by the end-user themselves, and allowing either single-file or multi-file selection. When the user has selected one or more assets, the app will do a call-back to the calling 3rd party app with json info on the selected files.</p>\n<p>This is by far the preferred option for this use-case as it will be quicker to implement, provides a rich search/browse experience, and will automatically receive feature enhancements from us.</p>\n<p>You can see further detail on the endpoint below under the \"UI\" section as well as example code for how to implement it in either jQuery and JECMAScript6+WebPack here: <a href=\"https://github.com/bwkz/assetInsert-integration-examples\">https://github.com/bwkz/assetInsert-integration-examples</a></p>\n<h2 id=\"searchbrowse-ui-via-simplesearch\">Search/Browse UI via /simpleSearch</h2>\n<p>The <code>/simpleSearch</code> endpoint can of course as the name implies be used for creating a simple Google-style search feature, but it can - and should - also be used for manually constructing a folder-hierarchy browse feature if you need this, and can't use /assetInsert as described above.</p>\n<h3 id=\"search-ui-via-simplesearch\">Search UI via /simpleSearch</h3>\n<p>You will need to create your own text input box which on submit performs a GET like so with <code>XXXX</code> being the phrase the end-user types in</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>/simpleSearch?searchterm=XXXX\n\n</code></pre><p>The result will be something like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"result\":{\n\"message\":\"Success\",\n\"code\":0\n},\n\"searchResult\":{\n\"total\":2,\n\"hits\":[\n{\n\"_source\":{\n\"extendedKeywords\":\"\",\n\"serialNumber\":2001,\n\"description\":\"\",\n\"version\":1,\n\"thumbnailUrlCdn\":\"https://cdn.domain.com/assetThumbnails/0020/2001_1_thumbnail_320x320_page1_157792.jpg\",\n\"title\":\"Brandworkz-Logo-Landscape-RGB-darkText\",\n\"objectURL\":\"/BMS/asset/views/?artwork_ID=2001&amp;category=96\"\n},\n\"_type\":\"asset\",\n\"_id\":\"d76e2bc0-7933-4cc2-b4b0-3b8183279758\",\n\"_score\":13.55542\n},\n{\n\"_source\":{\n\"extendedKeywords\":\"\",\n\"serialNumber\":3697,\n\"description\":\"\",\n\"version\":1,\n\"thumbnailUrlCdn\":\"https://cdn.domain.com/assetThumbnails/0036/3697_1_thumbnail_320x320_page1_144462.jpg\",\n\"title\":\"Brandworkz Logo Landscape RGB Neg\",\n\"objectURL\":\"/BMS/asset/views/?artwork_ID=3697&amp;category=95\"\n},\n\"_type\":\"asset\",\n\"_id\":\"1d91d44f-9f10-44d0-bcb5-8d2bad4816dc\",\n\"_score\":8.396609\n}\n],\n\"max_score\":null\n}\n}\n\n</code></pre>\n<p>Note the following in relation to the response structure above:</p>\n<ul>\n<li><code>searchResult.total</code> is of course the total number of total hits from a particular search query and the <code>searchResult.hits</code> array are the actual hits. However, the hits array is limited to only show a max number of hits so may not match the total. See the guidance on the <code>from</code> and <code>size</code> parameters further down for implementing paging.</li>\n<li>for each entry in the <code>searchResult.hits</code> array:</li>\n<li><code>_id</code> is the guid for the result. You should if possible always use the GUID even though for certain types like assets, a sequential serialnumber/ID is also returned. There are some older API calls which will expect the sequential ID but these are likely to be retired in the future as we move towards using only GUIDs everywhere.</li>\n<li><code>files.GUID._source</code> contains all other information for a result. See info on the <code>sourceFields</code> parameter further down to return additional metadata if you need it.</li>\n<li><code>extendedKeywords</code> : This is a synthesized read-only field useful for outputting a simplified keywords list. It consists of a concatenation of:</li>\n<li>Content of field with a \"keywords\" systemref if there is one</li>\n<li>Values from all multiple-choice fields (select, tick, radio, multi, hierarchical)</li>\n<li>Text from any single-line text fields if they haven't got a systemref of \"description\"</li>\n<li><code>description</code> : Will show the content of any field with a systemref of 'description'</li>\n<li>thumbnailUrlCdn : Link to a small thumbnail sized to a 320x320 bounding box.</li>\n<li><code>objectURL</code> : a link to the asset within the Brandworkz Web-UI</li>\n</ul>\n<p>The endpoint is permission-aware so will only return results which the end-user has access to, but by default it will return results from everywhere in the system as well as all asset types so you may want to limit down on these as well:</p>\n<ul>\n<li><code>categoryGUID</code> : If this is passed in then only descendants of that category/folder will be returned. Tip: The sysadmin can see the categoryGUID of a folder in the Brandworkz Web-UI if they browse to the folder and click on Properties.</li>\n<li><code>assetType</code> : By default all of these types/categories are returned: Image, Video, Audio, Document, Folder, Webpage, Editable template (W2P template), User artwork (artwork created from W2P template). If for instance you are creating an integration for a CMS then it's likely that you wouldn't want to show folders, webpages and web-to-publish templates/artworks, but only files and would therefore specify <code>assetType=Image,Video,Audio,Document</code> Note that the options are case sensitive.</li>\n<li><code>fileType</code> : In some circumstances you may need to limit the filetypes down even further than just the asset categories/types above to specific file suffixes. If for instance you were creating a document integration where only PowerPoint files should show up in the results you could specify <code>fileType=pptx,potx,potm,ppsx,ppsm,pptm,ppam,ppt,pot,pps,ppm</code> These options are case-insensitive.</li>\n</ul>\n<p>You will most likely also need to use these two parameters:</p>\n<ul>\n<li><code>from</code> : This is for implementing paging if there are more results than will fit on one page. The default number of search results returned for a page is 50 as set in the optional <code>size</code> parameter. If there are more than 50 hits, then for page 2 you need to pass <code>from=50</code> for page 3 <code>from=100</code> and so forth (note that this is zero-based). You can check how many hits there are from a query in the <code>searchResult.total</code> node of the response. The maximum value you can set <code>size</code> to is 500, but of course the higher you set this, the slower your UI will be, especially if you are loading thumbnails for the results as well.</li>\n<li><code>sourceFields</code> : This determines how much file information and metadata you will get back for each hit. By default it will return a good base selection of fields such as title, thumbnailUrlCdn, etc. so start there. If you need more information back for an asset, such as custom metadata, pixel sizes, then <em>temporarily</em> set <code>sourceFields=all</code>. This will return all metadata including custom metadata. You can then specify all of the fieldnames you need as a list in sourceFields and these will be returned. Note that it's very important to not use sourceFields=all in production because this will e.g. also return the document fulltext so the response can run to many megabytes.</li>\n</ul>\n<p>Note that you can also create more complex search queries via the <code>/search</code> endpoint, for instance if you wanted to return search facets/filtes. This takes native Elastic json query format and executes it against your Elastic search index after applying the end-users permissions. In order to use this you will therefore need to have a good understanding of both the Elastic query syntax as well as the internal structure of your Brandworkz search index.</p>\n<h3 id=\"browse-ui-via-simplesearch\">Browse UI via /simpleSearch</h3>\n<p>If you need to manually create an OS-style folder-browse UI via /simpleSearch then first go through how to create a search UI with this endpoint above. This will give you a grounding in many of the input parameters you will also need for a browse UI.</p>\n<p>Typically you will want to start by outputting all folders and files at the root of the folder hierarchy. In order to only return direct children of a particular folder is to use the <code>parentCategoryGUID</code> input parameter.</p>\n<p>In order to get the GUID of the root category use this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /getCategoryInfo?categoryID=0\n\n</code></pre><p>...and the guid will be returned in the <code>categoryGuid</code> node.</p>\n<p>Then use the returned GUID for the root node like so:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>GET /simpleSearch?parentCategoryGUID=1B35C48F-03EA-4DB3-99B2-F7C598979E68&amp;assetType=Folder,Webpage,Image,Video,Audio,Document\n\n</code></pre><p>The response structure will be the same as shown further up under \"Search UI via /simpleSearch\" but note that you may get both Folders, WebPages as well as files (image, Video, Audio, Document) in the results.</p>\n<ul>\n<li><code>Folders</code> and <code>WebPages</code> : Both of these will return as <code>_type=folder</code>. This is because conceptually they are the same, i.e. nodes in a hierarchy. A webpage is essentially a folder with a CMS template attached to it. Note that even though Webpages can't directly contain assets they can have sub-folders which may have assets in so when doing a browse-UI you should always include these in assetType.</li>\n<li><code>Image,Video,Audio,Document</code> You may of course want to limit this down to only some of these asset categories.</li>\n<li>You will probably want to represent each folder, page and asset type with distinct icons in your UI. If this is the case you should include <code>assetType</code> in the list of <code>sourceFields</code> you specify as you can then pick up on this in the response to show the right icon for each type.</li>\n<li>If parentCategoryGUID is specified, then the ranking of the result will be modified from the default internal Elastic \"ranking\" and instead will be returned with folders/webpages first and then assets, both alphabetically.</li>\n<li>If you need to limit down to specific file filetypes/suffixes via the <code>fileType</code> parameter then note that folders and webpages will not be returned and in this case you will need to make two calls every time the end-user browses to a folder, one for the folders/pages, and another for the files of the specific type.</li>\n</ul>\n<p>The above will return a number of folder/webpage and file hits at the root. When the user clicks on one of these then you will probably want to do the following:</p>\n<ul>\n<li><strong>Folders/Webpages</strong> : Simply do an identical call to the root folder one above but exchange the parentCategoryGUID with the GUID of the folder as returned in <code>_id</code></li>\n<li><strong>Files</strong> : You may have everything you need in the <code>_source</code> sourceFields as returned by the original query, but you don't want to make this too bloated so if you need to show a variety of asset metadata when an asset is clicked then perform another call to /simpleSearch specifying the extra sourceFields you need and entering the asset GUID as returned in <code>_id</code> for the hit into the <code>searchTerm</code> field</li>\n</ul>\n<h1 id=\"uploading-files\">Uploading files</h1>\n<p>When uploading files to Brandworkz via the API you can do this in two ways.</p>\n<ol>\n<li>Upload the whole file in one PUT action.</li>\n<li>Split the file into parts/chunks, upload each chunk and then assemble the uploaded chunks after uploading.</li>\n</ol>\n<p>We recommend that you implement both types depending on the size of the file, with single-file upload for smaller files and multi-part/chunked upload for large files as you will then be covered for all file sizes now and in the future. In the Brandworkz web-UI we start to chunk uploads for files that are larger than 15MB and this is also our recommendation for you.</p>\n<p>However, if you know that your integration won't be uploading large files such as HD videos, Photoshop files, large PowerPoints, etc then you can opt to only implement the single-file upload, although note that even if you have a fast internet connection then these uploads may start failing if the files go above 100-200MB, and doing very large PUTs may also be disallowed by a security device on your corporate network. The theoretical limit for a single-file PUT is 5GB, but if you have filesizes like that then you definitely need to implement chunked upload.</p>\n<p>Uploading a single file vs multi-part is controlled via the <code>uploadType</code> parameter when calling the initial <code>/createUploadPath</code> API endpoint.</p>\n<ol>\n<li>If you don't specify uploadType then you will be returned a single-file upload URL for files smaller than <strong>15MB</strong>, and an array of upload links for files larger than this, for uploading each chunk to. The array also specifies how many bytes each chunk should be.</li>\n<li>If you specify <code>single-upload</code> then you will get a single upload URL returned to PUT the file to.</li>\n<li>If you specify <code>multipart-upload</code> then you will be returned an array of upload links including what the byte size of each chunk should be. Each chunk will be 15MB with the remainder in the last chunk. E.g. a 32MB file will return three upload URLs, the first two for 15MB chunks each and the last one for the remaining 2MB. Note however, that if the file is so large that a 15MB chunk size would result in more than 200 upload links, the chunksize will be increased. Therefore, the part byte sizes are not constants and will need to be read from the response returned by the initial /createUploadPath call - see below.</li>\n</ol>\n<p><em>(Note that if you use Postman for your API development then this will unfortunately not work for the actual file uploads/PUTs as Postman adds additional headers which stops the authentication working with the AWS S3 signed upload url returned)</em></p>\n<h2 id=\"upload-the-whole-file-in-one-action\">Upload the whole file in one action</h2>\n<p>The steps for this are in summary as follows:</p>\n<ol>\n<li>Generate an upload link via the /createUploadPath endpoint</li>\n<li>Upload the file to the upload link via PUT</li>\n<li>Import the file into Brandworkz via the /importAsset endpoint</li>\n</ol>\n<h3 id=\"1-generate-an-upload-link-via-the-createuploadpath-endpoint-for-single-file-upload\">1. Generate an upload link via the /createUploadPath endpoint for single-file upload</h3>\n<p>This will return the information needed to upload the file to S3, and also to import it in a later call. At a minimum you need to specify these in the request body:</p>\n<ul>\n<li><strong>fileName</strong> (string) The name of the file being uploaded incl suffix. e.g. myLogo.png.</li>\n<li><strong>fileSize</strong>(numeric) The size of that file in bytes - e.g. 33554432 (a 32MB file)</li>\n<li><strong>categoryGuid</strong> (string) The GUID of the folder that you're going to upload into. The category GUID is returned by other endpoints in the API, e.g. <code>/simpleSearch</code> and <code>/getCategoryInfo</code></li>\n<li><strong>uploadType</strong>(enum, <em>optional</em>) Can be either <code>single-upload</code> or <code>multipart-upload</code> As outlined above, this will control if this function returns a single link for uploading the entire file in one PUT, or an array of links for uploading the file in chunks. If this isn't specified then a single upload link will be returned for files of less than 15MB, and an array of upload links for each 15MB (or larger) chunk for files larger than this. In this example <code>single-upload</code> should be specified.</li>\n</ul>\n<p>You can optionally also specify these:</p>\n<ul>\n<li><strong>assetGuid</strong> (string, <em>optional</em>) If you would like to upload a new file/version to an existing asset then specify the assetGuid of the asset you would like to upload this new version to. Also, if you are uploading a custom thumbnail to an existing asset then you must specify this.</li>\n<li><strong>isCustomThumbnail</strong> (boolean, <em>optional</em>) If this is set to true then the path returned will be for uploading a custom thumbnail/preview to an existing asset. This is useful for filetypes where we may not auto-generate a visual preview, e.g. some 3D files. If this is set to true then you must specify a valid assetGuid, and also set the equivalent parameter to true in the subsequent /importAsset endpoint.</li>\n</ul>\n<p>An example request body is this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"filename\": \"myLogo.png\",\n\"filesize\": 33554432,\n\"categoryGuid\": \"a4428547-14f9-4a0e-bb53-f7c3a06c7a6e\",\n\"uploadType\": \"single-upload\"\n}\n\n</code></pre>\n<p>And the response will be similar to this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"data\":{\n\"categoryGuid\":\"a4428547-14f9-4a0e-bb53-f7c3a06c7a6e\",\n\"assetId\":10152,\n\"assetVersion\":1,\n\"keyName\":\"originals/0101/myLogo_010152_001.png\",\n\"uploadDetails\":{\n\"type\":\"single-upload\",\n\"url\":\"https://bwkz-bms-euprod-tenant-assets.s3-accelerate.amazonaws.com/clientname/assets/originals/0135/myLogo_010152_001.png?AWSAccessKeyId=ASIAQ2YO7IPIP6YGS57P&amp;Signature=HaZcmoTVI7KYRPVdt...&amp;Expires=1601988910\"\n}\n},\n\"result\":{\n\"message\":\"Success\",\n\"status\":0\n}\n}\n\n</code></pre>\n<p>Notes to the above response:</p>\n<ul>\n<li>Before going further, first check for success. Do this by checking for result.status=0 or alternatively for a 200 HTTP success code.</li>\n<li>If there is an error then the error message will be in the result.message json node.</li>\n<li>The upload link is time limited. 15 minutes, or correspondingly longer the larger the file is.</li>\n<li>Keep the information returned from this endpoint, as we will need to use it in subsequent calls.</li>\n</ul>\n<h3 id=\"2-upload-the-file\">2. Upload the file</h3>\n<p>Upload the entire file via PUT to URL returned in the data.uploadDetails.url node in the /createUploadPath endpoint above.</p>\n<p>As mentioned above, note that you during development can't use Postman for this as it adds headers incompatible with AWS S3 signed URLs.</p>\n<p>Check for a 200 OK HTTP response from the PUT to validate that the file uploaded successfully.</p>\n<h3 id=\"3-import-the-file-into-brandworkz-via-the-importasset-endpoint\">3. Import the file into Brandworkz via the /importAsset endpoint</h3>\n<p>Finally import the uploaded file into Brandworkz by calling the <code>/importAsset</code> endpoint</p>\n<p>At a minimum you need to specify these in the request body:</p>\n<ul>\n<li><strong>categoryGuid</strong> (string) must be the same categoryGuid specified in the /createUploadPath call</li>\n<li><strong>keyName</strong> (string) As returned from /createUploadPath in the <code>data.keyname</code> value</li>\n<li><strong>originalFilename</strong> (string) Pass the same value as per <code>fileName</code> in the /createUploadPath call</li>\n<li><strong>assetId</strong> (string) As returned from /createUploadPath in the <code>data.assetId</code> value</li>\n<li><strong>assetVersion</strong> (string) As returned from /createUploadPath in the <code>data.assetVersion</code> value</li>\n<li><strong>filesize</strong> (numeric) The filesize in bytes</li>\n</ul>\n<p>Continuing our example from above with the myLogo.png file the request body would look like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"categoryGuid\": \"a4428547-14f9-4a0e-bb53-f7c3a06c7a6e\",\n\"keyName\": \"originals/0101/myLogo_010152_001.png\",\n\"originalFilename\": \"myLogo.png\",\n\"assetId\": 10152,\n\"assetVersion\": 1,\n\"fileSize\": 33554432\n}\n\n</code></pre>\n<p>If the file imports correctly, then you will get a response similar to this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"result\": {\n\"status\": 0,\n\"message\": \"Success\"\n},\n\"data\": {\n\"binaryIdenticalToGuid\": \"\",\n\"shortcutCreated\": 0,\n\"md5\": \"99a3ceafafd891df92a5847e603d60aa\",\n\"pixelwidth\": 7016,\n\"pixelheight\": 4961,\n\"resolution\": 300,\n\"imageformat\": \"CMYK-32\",\n\"pagecount\": 1,\n\"durationInSeconds\": 0,\n\"disksizeBytes\": 33554432,\n\"assetSerialNumber\": 10152,\n\"assetVersion\": 1,\n\"assetGuid\": \"272c757f-01a6-4d72-9eb1-328d82a7ca59\",\n\"assetVersionGuid\": \"7f449978-b7e4-4537-a208-4eabc7867705\",\n\"assetTitle\": \"myLogo\",\n\"nameClash\": false\n}\n}\n\n</code></pre>\n<p>Notes to the above response:</p>\n<ul>\n<li>As per earlier calls, check for success. Do this by checking for <code>result.status=0</code> or alternatively for a <code>200 HTTP success</code> code. If unsuccessful, the reason for the issue will be in result.message.</li>\n<li>Note that files may fail to import as expected behaviour. For instance if you try to upload an .exe file this will not import for security reasons. You may also have file deduplication enabled and the same binary file is already on the system in which case the file will be turned into a shortcut of the original. In most cases result.status = 1 means that there have been an error and result.status = 2 means that the file hasn't important for another reason. In both cases the reason should be returned in <code>result.message</code>.</li>\n<li>In order to return a response as soon as possible from this call, only the essential asset information is discovered and returned. Further asynchronous tasks will be performed after the response, for instance adding the asset to the search index, creating thumbnails and previews, extracting document text, discovering colours, etc. Therefore, if you call e.g. <code>/simpleSearch</code> on the returned assetGuid immediately after upload it may not be present or may not be fully populated. The asynchronous data should be fully populated after 30 seconds, although note that documentfulltext from documents and colour extraction from images can take up to 2 minutes. Also note that even though you can query the API and get thumbnail links back after 30 seconds, the actual image files may not be generated until later.</li>\n<li>In extension to the above point, note that any embedded metadata in images - e.g. keywords, description, etc - is extracted synchronously before the /importAsset responds. This means that it is safe to immediately call the <code>POST /saveMetadata</code> endpoint after this if you need to assign metadata to the uploaded file.</li>\n</ul>\n<p>The data nodes in the above example are guaranteed to be returned regardless of filetype, although some of them may be empty, e.g. if you upload an audio file then the pixelwidth/height will of course be empty. Note the following on these response nodes:</p>\n<ul>\n<li><strong>shortcutCreated</strong> (bool): If you have file deduplication enabled in the system preferences, and the file you are uploading is already present somewhere else in the system - based on an MD5 checksum match - then this will be true (1).</li>\n<li><strong>binaryIdenticalToGuid</strong> (string): if shortcutCreated = 1 then this will contain the assetGuid of the file on the system which the uploaded file is identical to.</li>\n<li><strong>md5</strong> (string): Note that this will only be returned if asset deduplication is enabled in system preferences. You can use this to verify with absolute certainty that the file uploaded successfully if you calculate the md5 checksum of the original file and then compare it with this value.</li>\n<li><strong>disksizeBytes</strong> (integer): number of bytes of the file uploaded. Should match the filesize of the original file, i.e. can be used as a quickcheck to ensure that the file uploaded intact.</li>\n<li><strong>pixelwidth</strong> (integer): pixelwidth for images and videos. Empty if other types</li>\n<li><strong>pixelheight</strong> (integer): pixelheight for images and videos. Empty if other types</li>\n<li><strong>resolution</strong> (integer): resolution in dpi for images. Empty if other types</li>\n<li><strong>imageformat</strong> (string): the colourDepth/system for images. Typical values are \"RGB-24\", \"RGB-48\", \"RGB-96\", \"CMYK-32\", \"CMYK-64\", \"CMYK-128\"</li>\n<li><strong>pagecount</strong> (integer): The page or slide count for documents and presentations. 1 for all other filetypes.</li>\n<li><strong>durationInSeconds</strong> (decimal): duration for videos in second-decimal format</li>\n<li><strong>assetSerialNumber</strong> (integer): The human-friendly Brandworkz serial number. A sequential number which is incremented every time a new file is uploaded. Note that although this is guaranteed to be unique within your system, you should if possible use the assetGuid in preference to this for storing back in your own system or for further actions on the asset.</li>\n<li><strong>assetVersion</strong> (integer): Will be 1 for new assets, and subsequent numbers if uploading new versions of existing assets.</li>\n<li><strong>assetGuid</strong> (guid): The main identifier for a Brandworkz asset. In your integration you should store this GUID back in your own system for future reference/API calls on that asset. Note however that this guid is version independent and when used will return the details of the latest version of this asset - which for most use cases is what you would want. However, you may want to store the assetVersion back in your system as well for future reference.</li>\n<li><strong>assetVersionGuid</strong> (guid): The asset's version-specific Guid. This is mainly used for internal purposes at present but may be used in future public API calls.</li>\n<li><strong>assetTitle</strong> (string): The title of the asset. Will for new assets initially be based on the filename minus the file suffix. Note that if you upload new versions of existing assets then the assetTitle will remain and not change to the filename of the new file if this is different to the original version. See also 'nameClash' below.</li>\n<li><strong>nameClash</strong> (bool): If you upload a file to a folder which already have an asset with the same Title as what the new one would get based on it's filename then (2) will be appended to it. For instance if you upload \"myLogo.png\" and there is already an asset in the same folder called \"myLogo\" then the new asset will be named \"myLogo (2)\" and so forth, and this will be returned in the <code>assetTitle</code> above.</li>\n</ul>\n<h3 id=\"completion\">Completion</h3>\n<p>If all of the responses returned successfully, you should now be able to see the file in the system in the folder that you specified!</p>\n<p>Typical subsequent API calls after uploading are:</p>\n<ul>\n<li><code>POST /saveMetadata</code> for assigning/changing the asset's metadata.</li>\n<li><code>/simpleSearch</code>for getting further information back on the asset beyond what's returned in the /importAsset response. See notes on the asynch nature of this further up.</li>\n</ul>\n<h2 id=\"upload-files-in-separate-chunksparts\">Upload files in separate chunks/parts</h2>\n<p>The steps for this are in summary as follows:</p>\n<ol>\n<li>Generate the upload links via the /createUploadPath endpoint</li>\n<li>Split the file into chunks and then upload each one via the upload links returned via PUT</li>\n<li>Assemble the chunks back into a file after uploading all chunks</li>\n<li>Import the file into Brandworkz via the /importAsset endpoint</li>\n</ol>\n<h3 id=\"1-generate-the-upload-links-via-the-createuploadpath-endpoint\">1. Generate the upload links via the /createUploadPath endpoint</h3>\n<p>The input parameters are identical to the ones outlined under the single-file upload above apart from the fact that the <code>uploadType</code> should be <code>multipart-upload</code> - or if <code>uploadType</code> isn't specified and the file is larger than 15MB</p>\n<p>The response is somewhat different to the single-file response and looks like this for our imaginary 32MB myLogo.png file:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"data\":{\n\"categoryGuid\":\"a4428547-14f9-4a0e-bb53-f7c3a06c7a6e\",\n\"assetId\":10152,\n\"assetVersion\":1,\n\"keyName\":\"originals/0101/myLogo_010152_001.png\",\n\"uploadDetails\":{\n\"uploadId\":\"9lI4NQl20DGxnpYreJV6f3EHg7.CaiEGHj4dAOGdk1VAK7lDOgJRzIQ.9N5s35l.l6NQRsqtMeYckhHsoblYW01QKxb3rjnn4bZR48e2pOggj3Cj3y5e2S6VBtvXQbl3ahFXaL.5EAC5wXhCoxacaiCrcME3J5b7RxTrKj62XZI-\",\n\"urls\":[\n\"https://bwkz-bms-qa-tenant-assets.s3-accelerate.amazonaws.com/example_client/assets/originals/0101/myLogo_010152_001.png?uploadId=9lI4NQl20DGxnpYreJV6f3EHg7.CaiEGHj4dAOGdk1VAK7lDOgJRzIQ.9N5s35l.l6NQRsqtMeYckhHsoblYW01QKxb3rjnn4bZR48e2pOggj3Cj3y5e2S6VBtvXQbl3ahFXaL.5EAC5wXhCoxacaiCrcME3J5b7RxTrKj62XZI-&amp;partNumber=1&amp;AWSAccessKeyId=ASIAQ2YO7IPILRUZ3QGH&amp;Signature=9OlMOePJ4L6ZYzzRV7zJ0rQy2Yc=&amp;x-amz-security-token=IQoJb3...&amp;Expires=1601997174\",\n\"https://bwkz-bms-qa-tenant-assets.s3-accelerate.amazonaws.com/example_client/assets/originals/0101/myLogo_010152_001.png?uploadId=9lI4NQl20DGxnpYreJV6f3EHg7.CaiEGHj4dAOGdk1VAK7lDOgJRzIQ.9N5s35l.l6NQRsqtMeYckhHsoblYW01QKxb3rjnn4bZR48e2pOggj3Cj3y5e2S6VBtvXQbl3ahFXaL.5EAC5wXhCoxacaiCrcME3J5b7RxTrKj62XZI-&amp;partNumber=2&amp;AWSAccessKeyId=ASIAQ2YO7IPILRUZ3QGH&amp;Signature=aRu4O3pPg2w2tW+eEeoJhgG0Y7Q=&amp;x-amz-security-token=IQoJb3...&amp;Expires=1601997174\",\n\"https://bwkz-bms-qa-tenant-assets.s3-accelerate.amazonaws.com/example_client/assets/originals/0101/myLogo_010152_001.png?uploadId=9lI4NQl20DGxnpYreJV6f3EHg7.CaiEGHj4dAOGdk1VAK7lDOgJRzIQ.9N5s35l.l6NQRsqtMeYckhHsoblYW01QKxb3rjnn4bZR48e2pOggj3Cj3y5e2S6VBtvXQbl3ahFXaL.5EAC5wXhCoxacaiCrcME3J5b7RxTrKj62XZI-&amp;partNumber=3&amp;AWSAccessKeyId=ASIAQ2YO7IPILRUZ3QGH&amp;Signature=l9M9SVbEJkBEQtF0IbNKdhKG00s=&amp;x-amz-security-token=IQoJb3...&amp;Expires=1601997174\"\n],\n\"mainChunkSize\":15728640,\n\"finalChunkSize\":2097152,\n\"type\":\"multipart-upload\",\n\"chunkNo\":3\n}\n},\n\"result\":{\n\"message\":\"Success\",\n\"status\":0\n}\n}\n\n</code></pre>\n<p>Included in this response is the mainChunkSize and the finalChunkSize, these values are in bytes. These relate to the size of the chunks that should be uploaded to each URL. The final URL in the list should have a chunk corresponding to the finalChunkSize.</p>\n<p>In the example above, the chunkNo indicates that there should be 3 chunks in total: 2 with a size of 15728640 bytes each, and 1 of 2097152 bytes.</p>\n<p>Also note that the three upload URLs returned in the data.uploadDetails.urls array each have a <code>partNumber</code> URL parameter which corresponds to the chunk that should be used against it. The returned array will always be in sequence, i.e. partNumber will always be 1 for the first link and so forth.</p>\n<p>You will also need to keep track of the data.uploadId value returned as you need this later to assemble the files.</p>\n<h3 id=\"2-split-the-file-into-chunks-and-then-upload-each-one-via-the-upload-links-returned-via-put\">2. Split the file into chunks and then upload each one via the upload links returned via PUT</h3>\n<p>Now that we have generated the links to upload to, we now need to actually upload the file chunks.</p>\n<p>The chunks need to be sent with a HTTP PUT request.</p>\n<p>When uploading chunks, then each chunk should be uploaded to the corresponding URL in the list returned by /createUploadPath as described above.</p>\n<p>During development you may want to do the uploads from the command line. On Linux/Apple based systems, you can use the curl command, e.g.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>curl -v --upload-file x1.bin \"https://bwkz-bms-qa-tenant-assets.s3-accelerate.amazonaws.com/example_client/assets/originals/0101/myLogo_010152_001.png?uploadId=9lI4NQl20DGxnpYreJV6f3EHg7.CaiEGHj4dAOGdk1VAK7lDOgJRzIQ.9N5s35l.l6NQRsqtMeYckhHsoblYW01QKxb3rjnn4bZR48e2pOggj3Cj3y5e2S6VBtvXQbl3ahFXaL.5EAC5wXhCoxacaiCrcME3J5b7RxTrKj62XZI-&amp;partNumber=1&amp;AWSAccessKeyId=ASIAQ2YO7IPILRUZ3QGH&amp;Signature=9OlMOePJ4L6ZYzzRV7zJ0rQy2Yc=&amp;x-amz-security-token=IQoJb3...&amp;Expires=1601997174\"\n\n</code></pre><p>In this example, \"x1.bin\" is the name of the chunk (see the split command reference in Chunking) and the link is the first link in the list of the /createUploadPath response.</p>\n<p>Curl is using the -v option here, so that we can see the headers returned by the call. We will need the ETag header returned in the response from every PUT call, as they will be used to assemble the chunks in the next call.</p>\n<p>Repeat the curl command for each chunk/URL of the file, and keep a record of all the ETag headers in the responses.</p>\n<p>When uploading programmatically you will also need to capture the Etag response from each chunk as you will need those to assemble the parts later.</p>\n<p>The method of chunking a file is completely up to you, and can vary from system to system. There is no single way of doing it, and you should pick the most appropriate method for your use case and programming language.</p>\n<p>For Linux and Apple based systems, there is the split command, e.g.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>split -b 15728640 --numeric-suffixes=1 --suffix-length=1 --additional-suffix=\".bin\" myLogo.png\n\n</code></pre><p>This would generate a number of files with the .bin extension of the right sizes. e.g x1.bin.</p>\n<h3 id=\"3-assemble-the-chunks-back-into-a-file\">3. Assemble the chunks back into a file</h3>\n<p>To do this you call the <code>/assemble</code> endpoint with the following values for the request body:</p>\n<ul>\n<li><strong>objectKey</strong>: As returned in <code>keyName</code> from the initial <code>/createUploadPath</code> response</li>\n<li><strong>uploadId</strong>: As returned in <code>data.uploadId</code> from the initial <code>/createUploadPath</code> response</li>\n<li><strong>eTag</strong>(s): The eTag returned from each PUT upload for the chunks. Note that you will get \"ETag\" returned in the headers, but you need to use \"eTag\" in the json below.</li>\n</ul>\n<p>The json body should look like this:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"objectKey\": \"originals/0101/myLogo_010152_001.png\",\n\"uploadId\": \"KCTf7nos7bjhqk9w6y7wxXmQNsJWU1565Ul5bo.bfSfZM6DuDhhVND_ePmNkdYYQ2YsQZqVajtZQmZCjePeEag3oef08u2e8tvixjJEiWywCygUOOOxOMrGj4EiPgVtd8xeUnIyBDBlrXRfM9VKihdaDmb0g0WbMMDaAnWTmws4-\",\n\"parts\": [{\n\"partNumber\": 1,\n\"eTag\": \"a212be3df3b75034d3134181133961b0\"\n},\n{\n\"partNumber\": 2,\n\"eTag\": \"b1748f980effa301ef39a5b38cb1728e\"\n},\n{\n\"partNumber\": 3,\n\"eTag\": \"0812f72258be829e7c22094f69430e62\"\n}\n]\n}\n\n</code></pre>\n<p>The /assemble endpoint will return with a success if it managed to assemble the chunks properly. e.g.</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"result\": {\n\"status\": 0,\n\"message\": \"Success\"\n},\n\"data\": {\n\"uploadId\": \"KCTf7nos7bjhqk9w6y7wxXmQNsJWU1565Ul5bo.bfSfZM6DuDhhVND_ePmNkdYYQ2YsQZqVajtZQmZCjePeEag3oef08u2e8tvixjJEiWywCygUOOOxOMrGj4EiPgVtd8xeUnIyBDBlrXRfM9VKihdaDmb0g0WbMMDaAnWTmws4-\",\n\"asset\": \"example_client/assets/originals/0101/myLogo_010152_001.png\"\n}\n}\n\n</code></pre>\n<p>Now that the file has been reconstructed, it's now time to import the asset into the Brandworkz system.</p>\n<h3 id=\"4-import-the-assembled-file\">4. Import the assembled file</h3>\n<p>This is done in an identical manner to the single-file upload so see the corresponding section above for this.</p>\n<h1 id=\"inserting-asset-metadata\">Inserting asset metadata</h1>\n<p>After having uploaded a new file via the API you may also want to add metadata to that new asset, which is done via the POST <code>/saveMetadata</code> endpoint.<br>You can use this both for adding/modifying a number of fixed fields, as well as any custom metadata you may have set up in your instance of Brandworkz. This is done by posting json in the body/payload adhering to the following schema, where 'assetGuid' is the only mandatory field:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n  \"assetGuid\": \"string\",\n  \"assetPublishDate\": \"string\",\n  \"assetExpiryDate\": \"string\",\n  \"assetStatus\": 0,\n  \"assetTitle\": \"string\",\n  \"assetVersion\": 0,\n  \"languageCode\": \"string\",\n  \"metadata\": {},\n  \"metasetRef\": \"string\"\n}\n\n</code></pre>\n<h2 id=\"inserting-metadata-to-the-fixed-fields\">Inserting metadata to the fixed fields</h2>\n<p>These are the fixed fields:</p>\n<ul>\n<li><strong>assetGuid</strong> The asset's guid. Mandatory</li>\n<li><strong>assetPublishDate</strong> Set a publish date before which the asset will be unavailable. We recommend posting this in the <strong>yyyy\\mm\\dd</strong> format to avoid any ambiguity between US/non-US day/month notation.</li>\n<li><strong>assetExpiryDate</strong> Set an expiry date after which the asset will be unavailable. We recommend posting this in the <strong>yyyy\\mm\\dd</strong> format to avoid any ambiguity between US/non-US day/month notation.</li>\n<li><strong>assetStatus</strong><ul>\n<li>0 - Set the asset to hidden. Only a system administrator can see it.</li>\n<li>1 - This is the standard status; the asset can be viewed and download by any user with the correct permissions.</li>\n<li>2 - View only. The asset can only be viewed, and not downloaded.</li>\n</ul>\n</li>\n<li><strong>assetTitle</strong> Change the Title. Note that this can not be set to empty. Also note that if you try to set this to a title which is the same as another asset in the same folder you will get a 400 Bad Request response back, and a suggestion as to what you can rename it to in the <code>data.suggestion</code> node which will only be present if there is a name clash. The suggestion will be based on suffixing a number after the title asked for in the failing call.</li>\n<li><strong>assetVersion</strong> Ignore this. For potential future functionality. Asset metadata is currently not tied to a specific version of an asset but any/all versions.</li>\n</ul>\n<h2 id=\"inserting-metadata-to-custom-fields\">Inserting metadata to custom fields</h2>\n<p>To insert custom metadata you will need to use these parameters:</p>\n<ul>\n<li><strong>assetGuid</strong> The asset's guid</li>\n<li><strong>languageCode</strong> Only relevant if you have a multi-language system. This is for specifying the language code to insert to, where you need to call the endpoint separately for each of your langCodes. Note that you only need to do this for text entries, for multiple-choice entries only need to be saved in one language as they will then automatically be populated in all languages, assuming you have set up translations for the options.</li>\n<li><strong>metasetRef</strong> The systemRef for the metaset you are inserting values for. As a sysadmin or metadata admin you can see this by browsing to the relevant metaset in the admin area.</li>\n<li><strong>metadata</strong> A collection of fields specified by their systemRefs' and the associated values you want to insert.</li>\n</ul>\n<p>As an example, lets say we have a MetaSet for some product images which has a systemRef of <code>ASSETPRODUCTIMAGES</code><br>This metaset has the following fields in:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>Friendly Name</th>\n<th>SystemRef</th>\n<th>Type</th>\n<th>Options</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Keywords</td>\n<td>KEYWORDS</td>\n<td>textarea</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>SKU</td>\n<td>SKU</td>\n<td>Integer</td>\n<td>N/A</td>\n</tr>\n<tr>\n<td>Shot angle</td>\n<td>SHOTANGLE</td>\n<td>Selectbox</td>\n<td>Front/Left/Right</td>\n</tr>\n<tr>\n<td>Shot content</td>\n<td>SHOTCONTENT</td>\n<td>Checkbox</td>\n<td>People/Object/Interior environment/Exterior environment</td>\n</tr>\n<tr>\n<td>Colour</td>\n<td>COLOUR</td>\n<td>Hierarchical</td>\n<td>Red, Red-&gt;Burgundy, Red-&gt;Crimson, Green, Green-&gt;Avocado, Green-&gt;Lime green</td>\n</tr>\n</tbody>\n</table>\n</div><p>If we then had an asset with the following attributes:</p>\n<ul>\n<li>The keywords we want to insert are: <strong>boho chic, floral, spring</strong></li>\n<li>It's SKU/product code is: <strong>12364</strong></li>\n<li>Its a shot from the <strong>Front</strong></li>\n<li>Its showing <strong>people</strong> and <strong>Exterior environment</strong></li>\n<li>It's <strong>red</strong> and <strong>lime</strong> coloured</li>\n</ul>\n<p>...we would then post this Json in the body to insert that:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n   \"assetGuid\":\"2f0637c6-fd92-60c0-085b-154a2e3f263c\",\n   \"metasetRef\":\"ASSETPRODUCTIMAGES\",\n   \"metadata\":{\n      \"SKU\":\"12364\",\n      \"SHOTANGLE\":[\"Front\"],\n      \"THESHOTCONTENT\":[\"People\",\"Exterior environment\"],\n      \"COLOUR2\":[\"Red\",\"Green|Lime green\"\n      ],\n      \"KEYWORDS\":[\"boho chic, floral, spring\"]\n   }\n}\n\n</code></pre>\n<p>Note the following on the above:</p>\n<ul>\n<li><strong>SKU/Number fields</strong>. You should wrap these in double-quotes as is they were text fields</li>\n<li><strong>SHOTANGLE/Single-option selectbox or radio button</strong>: You can either pass the value as a single-item array as per above, or simply a text value. You must pass an option which exists for that field already, otherwise a 500 error will be returned</li>\n<li><strong>Shot Content/multi-value fields</strong> : You must pass this as an array of text entries. You must pass options which exist for that field already, otherwise a 500 error will be returned</li>\n<li><strong>Colour/hierarchical fields</strong> : You can target options at any level in the hierarchy but if the option isn't at the root, then you must pass a pipe-delimited path as per \"Green|Lime green\" above.</li>\n<li><strong>Keywords/text and textarea fields</strong>: You can either pass these as single-item array entries as per above or just a text value.</li>\n</ul>\n<p>Finally, you can insert both fixed and custom metadata in the same call.</p>\n<h1 id=\"error-handling\">Error Handling</h1>\n<p>The API calls will respond with appropriate <a href=\"https://en.wikipedia.org/wiki/List_of_HTTP_status_codes\">HTTP status codes</a> for all requests. When a response is received, the status code is returned and is accompanied by a help text that indicates the possible meaning of the response code. A <code>200 OK</code> indicates all went well, while <code>4XX</code> or <code>5XX</code> response codes indicate an error from the requesting client or our API servers respectively.</p>\n<p>The most common errors you can encounter in the Brandworkz API are as follows:</p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th>HTTP Status Code</th>\n<th>Response Code</th>\n<th>Error Message</th>\n<th>Cause</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>401</td>\n<td>1</td>\n<td>Full authentication is required to access this resource</td>\n<td>You are trying to access the API without authenticating.</td>\n</tr>\n<tr>\n<td>502</td>\n<td>2</td>\n<td>Service not available</td>\n<td>You are trying to access a service that isn’t running.</td>\n</tr>\n<tr>\n<td>422</td>\n<td>3</td>\n<td>Argument error</td>\n<td>Depending on endpoint. This is caused when parameters don’t pass validation.</td>\n</tr>\n<tr>\n<td>500</td>\n<td>4</td>\n<td>Configuration error</td>\n<td>A configuration value could not get retrieved, thus the action could not be completed.</td>\n</tr>\n</tbody>\n</table>\n</div><h1 id=\"infrastructure\">Infrastructure</h1>\n<p>The approach we are implementing is a micro-services architecture. Unlike a monolithic or standalone API, our system has the ability to scale up as needed. Endpoints are grouped by service and below is a list of the key services relating to DAM:</p>\n<ol>\n<li>Albums</li>\n<li>Annotations</li>\n<li>Assets</li>\n<li>Categories</li>\n<li>CMS</li>\n<li>Integration</li>\n<li>Metadata</li>\n<li>Navigation</li>\n<li>Search</li>\n<li>Users</li>\n</ol>\n<blockquote>\n<p>Please contact Brandworkz to find out more about other API services relating to other Brandworkz modules (e.g. Workflow and Web-to-Print).</p>\n</blockquote>\n<h1 id=\"responses\">Responses</h1>\n<p>The response to every request is sent in JSON format by default. Some endpoints have the option for other formats, such as HTML. This can be specified passing the optional query parameter <code>format</code> or making use of the request header <code>Accept</code> when calling an endpoint. We also return a response message and code for every call to check if the operation was successful, independently of the resulting content, in the following way:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"result\": {\n// message and status code\n},\n\"data\": {\n// content\n}\n}\n\n</code></pre>\n<p>For example:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">{\n\"result\": {\n\"status\": 5,\n\"message\": \"Service endpoint call failed\"\n},\n\"data\": {\n\"dateTime\": \"2019-02-11T10:50:56.924\",\n\"rootCause\": \"Can't find a service with serviceId = cms-v1.6\",\n\"endpointName\": \"cms/templates\",\n\"method\": \"post\"\n}\n}\n\n</code></pre>\n<h1 id=\"endpoint-structure\">Endpoint Structure</h1>\n<p>We work with several environments, so the versions and URLs change as the API evolves. The following three data variables are therefore essential when calling API endpoints:</p>\n<p><code>api_url</code>: The API base URL that needs to be used for all subsequent endpoint calls.</p>\n<p><code>client_id</code>: This is an identifier, specific for each client.</p>\n<p><code>api_version</code>: The current API version.</p>\n<blockquote>\n<p><strong>Important:</strong> These values must be always set dynamically using the <code>getAPIURL</code> call and never be hard-coded. We ensure this way consistency and integrity with the API. Hard-coding these values should be considered a bad practice and it is prone to errors.</p>\n</blockquote>\n<p>These data variables are used at the beginning of every endpoint as follows:</p>\n<p><code>{{api_url}}/v{{api_version}}/{{client_id}}/endpoint</code></p>\n<blockquote>\n<p><strong>Tip:</strong> For ease of use inside Postman, you could store the above as <a href=\"https://www.getpostman.com/docs/environments\">environment variables</a>. Then always run the <code>/getAPIURL</code> followed by the <code>/oauth/token</code> call before making any other API calls. More info on setting up Postman variables can be found <a href=\"https://developers.onelogin.com/api-docs/1/getting-started/postman-collections\">here</a>.</p>\n</blockquote>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Search and Browse","slug":"search-and-browse"},{"content":"Uploading files","slug":"uploading-files"},{"content":"Inserting asset metadata","slug":"inserting-asset-metadata"},{"content":"Error Handling","slug":"error-handling"},{"content":"Infrastructure","slug":"infrastructure"},{"content":"Responses","slug":"responses"},{"content":"Endpoint Structure","slug":"endpoint-structure"}],"owner":"2016221","collectionId":"09cbeb08-240d-4650-acad-ae127896c96a","publishedId":"2s93RRwtCU","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2023-03-29T08:15:57.000Z"},"item":[{"name":"Albums","item":[{"name":"Add album assets","id":"c02b2dd6-5d0c-413c-8ca8-91289809de5b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/addAlbumAssets?albumID={{albumID}}&assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Adds assets and/or shortcuts to the given album. This function will return an error if the logged in user does not own the album that the assets are trying to be added to.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","addAlbumAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album ID that you wish to add assets to.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>A comma separated list of asset IDs that you wish to add to the album.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>A comma separated list of shortcut IDs that you wish to add to the album.</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"95d7af71-67e7-49ec-9d1a-a7db97cd2178","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"c02b2dd6-5d0c-413c-8ca8-91289809de5b"},{"name":"Create album","id":"38733d97-3db7-4d4c-9b38-6e5e58615d21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/createAlbum?albumClient={{albumClient}}&albumDescription={{albumDescription}}&albumName={{U2hhcmU=}}&albumProject={{albumProject}}&assetIDs={{assetIDs}}&format={{json}}&isHidden={{0}}&shortcutIDs={{shortcutIDs}}&showFullscreen={{1}}&showMetadata={{0}}","description":"<blockquote>\n<p>Creates an album in the system for the the currently logged in user. This function will return the album information for the newly created album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","createAlbum"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The Base64 encoded client name that you wish to use.</p>\n","type":"text/plain"},"key":"albumClient","value":"{{albumClient}}"},{"description":{"content":"<p>The Base64 encoded album description that you wish to use.</p>\n","type":"text/plain"},"key":"albumDescription","value":"{{albumDescription}}"},{"description":{"content":"<p>The Base64 encoded album name that you wish to use. The default value is the Base64 encoding of \"Share\"</p>\n","type":"text/plain"},"key":"albumName","value":"{{U2hhcmU=}}"},{"description":{"content":"<p>The Base64 encoded project name that you wish to use.</p>\n","type":"text/plain"},"key":"albumProject","value":"{{albumProject}}"},{"description":{"content":"<p>Comma separated list of asset IDs that you want this album to have.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this album is hidden or not.</p>\n","type":"text/plain"},"key":"isHidden","value":"{{0}}"},{"description":{"content":"<p>Comma separated list of shortcut IDs that you want this album to have.</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"},{"description":{"content":"<p>Whether to allow a full screen view for the assets on this album.</p>\n","type":"text/plain"},"key":"showFullscreen","value":"{{1}}"},{"description":{"content":"<p>Whether to allow the user to see metadata for assets when viewing this album.</p>\n","type":"text/plain"},"key":"showMetadata","value":"{{0}}"}],"variable":[{"id":"ffb3e93f-08c5-440e-b2c3-805f99ab8333","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"38733d97-3db7-4d4c-9b38-6e5e58615d21"},{"name":"Create album short link","id":"c77860fd-4dcb-4e08-8da0-0cb7639846a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/createAlbumShortLink?albumID={{albumID}}&endDate={{endDate}}&format={{json}}&startDate={{startDate}}&transformIDs={{transformIDs}}","description":"<blockquote>\n<p>This function returns a URL which can be used to access an album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","createAlbumShortLink"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album ID you wish to create a shortcut link for</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The date when this link will stop working. If left empty/not given, then it will default to a date far in the future</p>\n","type":"text/plain"},"key":"endDate","value":"{{endDate}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The date when this link will start working. If left empty/not given, then it will default to the current date</p>\n","type":"text/plain"},"key":"startDate","value":"{{startDate}}"},{"description":{"content":"<p>A comma separated list of transform IDs that this album will be shared with</p>\n","type":"text/plain"},"key":"transformIDs","value":"{{transformIDs}}"}],"variable":[{"id":"416deb66-17f6-4d5b-98e8-f1efccf9b4da","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"c77860fd-4dcb-4e08-8da0-0cb7639846a2"},{"name":"Delete album","id":"36f1e130-1025-4249-ab49-1047e4c493f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/deleteAlbum?albumID={{albumID}}&format={{json}}","description":"<blockquote>\n<p>Deletes the given album. The only detail that is returned is a sucess message.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","deleteAlbum"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album that you wish to delete</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"5fd1dc4c-810a-46b0-b856-4ed38bb32da9","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"36f1e130-1025-4249-ab49-1047e4c493f4"},{"name":"Duplicate album","id":"2c599435-a2d6-4d14-89e0-37147cba94fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/duplicateAlbum?albumClient={{albumClient}}&albumDescription={{albumDescription}}&albumID={{albumID}}&albumName={{albumName}}&albumProject={{albumProject}}&copyAssets={{1}}&format={{json}}","description":"<blockquote>\n<p>This will duplicate the given album, and if the other fields are passed in, they will be used for the new album. If the parameters are not specified, then they will be taken from the album that you are duplicating. If you do not wish to have a value for these fields and you do not want to take the values from the given album, then pass in an empty string for that parameter.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","duplicateAlbum"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The Base64 encoded client name that you wish to use.</p>\n","type":"text/plain"},"key":"albumClient","value":"{{albumClient}}"},{"description":{"content":"<p>The Base64 encoded album description that you wish to use.</p>\n","type":"text/plain"},"key":"albumDescription","value":"{{albumDescription}}"},{"description":{"content":"<p>The ID of the album that you wish to duplicate.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The Base64 encoded album name that you wish to use.</p>\n","type":"text/plain"},"key":"albumName","value":"{{albumName}}"},{"description":{"content":"<p>The Base64 encoded project name that you wish to use.</p>\n","type":"text/plain"},"key":"albumProject","value":"{{albumProject}}"},{"description":{"content":"<p>If you wish to copy the assets and shortcuts from the given album, the set this value to 1. 0 will just copy the album and leave it empty.</p>\n","type":"text/plain"},"key":"copyAssets","value":"{{1}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"e5a2ee58-4015-40b9-a81c-6372dd6ea44f","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"2c599435-a2d6-4d14-89e0-37147cba94fd"},{"name":"Get album assets","id":"1e673e09-4106-4008-bccc-949cf4c83dde","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumAssets?albumID={{albumID}}&assetTypes={{all}}&fileName={{fileName}}&format={{json}}&integration={{0}}&log={{1}}&numberOfResults={{50}}&sortBy={{sortBy}}&start={{1}}","description":"<blockquote>\n<p>Returns the assets for a given album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the album you wish to get assets for.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>A comma separated list of strings representing the types of assets you wish to bring back. Values are all,audio,document,folder,image,template,video</p>\n","type":"text/plain"},"key":"assetTypes","value":"{{all}}"},{"description":{"content":"<p>This is a basic filter that will only bring back assets that have this value in their file name</p>\n","type":"text/plain"},"key":"fileName","value":"{{fileName}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this call is being made from an integration</p>\n","type":"text/plain"},"key":"integration","value":"{{0}}"},{"description":{"content":"<p>Whether to log this call as a view to an album </p>\n","type":"text/plain"},"key":"log","value":"{{1}}"},{"description":{"content":"<p>The number of results that you wish to be returned</p>\n","type":"text/plain"},"key":"numberOfResults","value":"{{50}}"},{"description":{"content":"<p>A comma separated list of strings in the format: field:order e.g. alpha:asc,size_disk:asc</p>\n","type":"text/plain"},"key":"sortBy","value":"{{sortBy}}"},{"description":{"content":"<p>The result number that you wish to start from (not currently implemented)</p>\n","type":"text/plain"},"key":"start","value":"{{1}}"}],"variable":[{"id":"82b8c92b-487a-4e0a-b62d-8cb71652c537","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"1e673e09-4106-4008-bccc-949cf4c83dde"},{"name":"Get album deleted assets","id":"143d8a8d-c4aa-4a02-b42e-2c086df1327f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumDeletedAssets?albumID={{albumID}}&format={{json}}","description":"<blockquote>\n<p>Returns a list of the assets that have been removed from the given album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumDeletedAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album that you wish to get the deleted assets for.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"11844cca-c937-4a75-8c2a-689589ef4bf2","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"143d8a8d-c4aa-4a02-b42e-2c086df1327f"},{"name":"Get album dependencies","id":"27fcd306-9e07-4d9a-9b4d-450c3577e32f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumDependencies?albumID={{albumID}}&format={{json}}","description":"<blockquote>\n<p>Returns information about the dependencies for the given album (e.g. the number of assets in this album, and the number of times it's been shared.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumDependencies"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album that you wish to get the deleted assets for.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"7f354515-8771-4bd2-99a7-1711ac34e88a","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"27fcd306-9e07-4d9a-9b4d-450c3577e32f"},{"name":"Get album global transforms","id":"e6a83c63-163c-4bb5-9409-1dcad8552fd1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumGlobalTransforms","description":"<blockquote>\n<p>Gets the transforms generally available for albums.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumGlobalTransforms"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"6c8498f2-5860-4a96-a8fd-3b9c6df30ed3","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"e6a83c63-163c-4bb5-9409-1dcad8552fd1"},{"name":"Get album history","id":"4a3738bf-5a39-4afb-833a-c8f5d04a3af5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumHistory?albumID={{albumID}}&endDate={{endDate}}&format={{json}}&startDate={{startDate}}","description":"<blockquote>\n<p>Returns they history records for the given album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumHistory"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>An album ID to retrieve the history for.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The latest date that you wish to get the history to.</p>\n","type":"text/plain"},"key":"endDate","value":"{{endDate}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The earliest date that you wish to get the history from.</p>\n","type":"text/plain"},"key":"startDate","value":"{{startDate}}"}],"variable":[{"id":"9329ad02-ea7c-447a-a7c3-d2b1fa9f6902","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"4a3738bf-5a39-4afb-833a-c8f5d04a3af5"},{"name":"Get album info","id":"351a2ad5-e7d4-4716-adb0-67aef71bb595","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumInfo?albumID={{albumID}}&format={{json}}","description":"<blockquote>\n<p>Returns information about the given album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumInfo"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album that you wish to retrieve information</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"7f879ecc-cc52-4475-b562-dc685fea51b6","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"351a2ad5-e7d4-4716-adb0-67aef71bb595"},{"name":"Get album large previews","id":"d8aa7f57-f9ca-482d-bc1d-faafbf07d944","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumLargePreviews?activeID={{0}}&albumID={{albumID}}&assetID={{assetID}}&format={{json}}&isFullScreen={{0}}&post={{post}}&pre={{pre}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Returns large preview code for the parameters passed in,</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumLargePreviews"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset ID that is to be shown first</p>\n","type":"text/plain"},"key":"activeID","value":"{{0}}"},{"description":{"content":"<p>ID of the album that contains these assets</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>ID of the asset in the middle you wish to get previews for</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this is a fullscreen request or not (should bring back previews of the larger size. 0 = False, 1= True</p>\n","type":"text/plain"},"key":"isFullScreen","value":"{{0}}"},{"description":{"content":"<p>A comma separated list of asset IDs that are to come after the selected asset</p>\n","type":"text/plain"},"key":"post","value":"{{post}}"},{"description":{"content":"<p>A comma separated list of asset IDs that are to precede the selected asset</p>\n","type":"text/plain"},"key":"pre","value":"{{pre}}"},{"description":{"content":"<p>A comma separated list of shortcut IDs, these are used to match up with the asset IDs passed in when we're looking at a shortcut. These can then be used to distinguish them in any output</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"1fde113b-aebb-46ea-80ae-f39fef62d697","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"d8aa7f57-f9ca-482d-bc1d-faafbf07d944"},{"name":"Get album sent log entry","id":"0c9e6879-ab07-47b5-9683-47b2aca92484","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumSentEntry?accessID={{accessID}}&format={{html}}","description":"<blockquote>\n<p>Retrieves the given sent entry.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumSentEntry"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The access ID for the record</p>\n","type":"text/plain"},"key":"accessID","value":"{{accessID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{html}}"}],"variable":[{"id":"6edd0e27-dc0a-4ade-8472-7200ab65d41d","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"0c9e6879-ab07-47b5-9683-47b2aca92484"},{"name":"Get album sent logs","id":"bf1cc67b-4989-4b0e-86eb-cd7fa2845b10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumSentLogs?endDate={{endDate}}&format={{json}}&startDate={{startDate}}","description":"<blockquote>\n<p>Returns they history records for the given album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumSentLogs"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The latest date that you wish to get the history to.</p>\n","type":"text/plain"},"key":"endDate","value":"{{endDate}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The earliest date that you wish to get the history from.</p>\n","type":"text/plain"},"key":"startDate","value":"{{startDate}}"}],"variable":[{"id":"37c5796a-2c7d-4767-ae9a-8d0a895c8d29","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"bf1cc67b-4989-4b0e-86eb-cd7fa2845b10"},{"name":"Get album sent logs for month","id":"0b499176-848a-4680-91e9-9ff7a58c6fa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumSentLogsForMonth?format={{json}}&month={{month}}&year={{year}}","description":"<blockquote>\n<p>Gets the album sent logs for the specified month.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumSentLogsForMonth"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The earliest date that you wish to get the history from.</p>\n","type":"text/plain"},"key":"month","value":"{{month}}"},{"description":{"content":"<p>The earliest date that you wish to get the history from.</p>\n","type":"text/plain"},"key":"year","value":"{{year}}"}],"variable":[{"id":"b33be4ee-eade-497d-8159-2c38fc9b1071","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"0b499176-848a-4680-91e9-9ff7a58c6fa8"},{"name":"Get album transforms","id":"5b3a6b46-b0be-4411-982c-6a9582620145","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbumTransforms?albumID={{albumID}}&format={{json}}&template={{transforms}}","description":"<blockquote>\n<p>Gets the list of transforms available for the specified album.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbumTransforms"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>albumID</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>template</p>\n","type":"text/plain"},"key":"template","value":"{{transforms}}"}],"variable":[{"id":"1df250fd-67bb-4c77-92d5-1f1190c27d11","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"5b3a6b46-b0be-4411-982c-6a9582620145"},{"name":"Get albums","id":"5dcd3e4c-0412-4163-bd8e-98c1236d745c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAlbums?format={{json}}&listingType={{0,1}}&sortBy={{sortBy}}","description":"<blockquote>\n<p>Returns a list of albums which match the specified criteria, for the logged in user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAlbums"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The type of albums you wish to return. Values are: 0 - Sent albums, 1 - Received albums</p>\n","type":"text/plain"},"key":"listingType","value":"{{0,1}}"},{"description":{"content":"<p>The sort string that you wish to return the albums in</p>\n","type":"text/plain"},"key":"sortBy","value":"{{sortBy}}"}],"variable":[{"id":"c1eab25d-6953-4ead-be3c-50d5dd1d390b","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"5dcd3e4c-0412-4163-bd8e-98c1236d745c"},{"name":"Get latest albums","id":"e55e9800-90f2-4dc9-b742-786a6b660918","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/latestAlbums?format={{json}}&limit={{limit}}&showHidden={{0}}&template={{latestAlbums}}","description":"<blockquote>\n<p>Returns the latest created albums for the logged in user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","latestAlbums"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The maximum number of albums you wish to return.</p>\n","type":"text/plain"},"key":"limit","value":"{{limit}}"},{"description":{"content":"<p>Whether to show hidden albums or not.</p>\n","type":"text/plain"},"key":"showHidden","value":"{{0}}"},{"description":{"content":"<p>The name of the template you wish to return. Note: Outside of a brandworkz instance, this paramater is unlikely to be anything other than the default.</p>\n","type":"text/plain"},"key":"template","value":"{{latestAlbums}}"}],"variable":[{"id":"d8aff9dc-97de-4370-89a6-85f139972875","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"e55e9800-90f2-4dc9-b742-786a6b660918"},{"name":"Remove album assets","id":"0d85fee6-cf57-4b63-bf21-62f736b695f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/removeAlbumAssets?albumID={{albumID}}&assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Removes the given assets from the given album. This method does not actually delete the assets from the system. This action is non-reversible.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","removeAlbumAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album ID that you wish to remove the assets from.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>A comma separated list of asset IDs that you wish to remove from the album.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>A comma separated list of shortcut IDs that you wish to remove from the album.</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"11ea8e68-9811-497e-abb3-8b13947f2460","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"0d85fee6-cf57-4b63-bf21-62f736b695f5"},{"name":"Save album","id":"cec32974-489c-4fe9-b598-045eba7c240f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/saveAlbum?albumClient={{albumClient}}&albumDescription={{albumDescription}}&albumID={{albumID}}&albumName={{albumName}}&albumProject={{albumProject}}&assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}&showFullscreen={{1}}&showMetadata={{0}}","description":"<blockquote>\n<p>Saves the given details against the given album. This function will return details about the album after the update.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","saveAlbum"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The Base64 encoded client name that you wish to use.</p>\n","type":"text/plain"},"key":"albumClient","value":"{{albumClient}}"},{"description":{"content":"<p>The Base64 encoded album description that you wish to use.</p>\n","type":"text/plain"},"key":"albumDescription","value":"{{albumDescription}}"},{"description":{"content":"<p>The album ID that you are going to save.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>The Base64 encoded album name that you wish to use.</p>\n","type":"text/plain"},"key":"albumName","value":"{{albumName}}"},{"description":{"content":"<p>The Base64 encoded project name that you wish to use.</p>\n","type":"text/plain"},"key":"albumProject","value":"{{albumProject}}"},{"description":{"content":"<p>The comma seprarated list of assets that you wish to save to this album.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The comma seprarated list of shortcuts that you wish to save to this album.</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"},{"description":{"content":"<p>Whether to allow a full screen view for the assets on this album.</p>\n","type":"text/plain"},"key":"showFullscreen","value":"{{1}}"},{"description":{"content":"<p>Whether to allow the user to see metadata for assets when viewing this album.</p>\n","type":"text/plain"},"key":"showMetadata","value":"{{0}}"}],"variable":[{"id":"80c9e915-2127-4678-9528-7056d31693df","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"cec32974-489c-4fe9-b598-045eba7c240f"},{"name":"Share album","id":"1899b7ea-5113-4e85-944a-23d3a0d7e465","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/shareAlbum?albumID={{albumID}}&emailAddresses={{emailAddresses}}&emailMessage={{emailMessage}}&emailSubject={{emailSubject}}&endDate={{endDate}}&format={{json}}&groupIDs={{groupIDs}}&startDate={{startDate}}&transformIDs={{transformIDs}}&userIDs={{userIDs}}","description":"<blockquote>\n<p>Shares the given album with the given users and email addresses. This function does not guarantee that the emails will be sent out immediately, but that they will go into a queue.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","shareAlbum"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The album that you wish to share</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>A comma separated list of email addresses that you wish to share the album with.</p>\n","type":"text/plain"},"key":"emailAddresses","value":"{{emailAddresses}}"},{"description":{"content":"<p>Base64 encoded text for the body of the email that will be sent to the recipients.</p>\n","type":"text/plain"},"key":"emailMessage","value":"{{emailMessage}}"},{"description":{"content":"<p>Base64 encoded text for the subject of the email that will be sent to the recipients.</p>\n","type":"text/plain"},"key":"emailSubject","value":"{{emailSubject}}"},{"description":{"content":"<p>The date that you wish the shared album to be stop being accessible.</p>\n","type":"text/plain"},"key":"endDate","value":"{{endDate}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>A comma separated list of group IDs that you wish to share the album with.</p>\n","type":"text/plain"},"key":"groupIDs","value":"{{groupIDs}}"},{"description":{"content":"<p>The date that you wish the shared album to be accessible.</p>\n","type":"text/plain"},"key":"startDate","value":"{{startDate}}"},{"description":{"content":"<p>A comma separated list of transform IDs that you wish to assign to recipients of this album.</p>\n","type":"text/plain"},"key":"transformIDs","value":"{{transformIDs}}"},{"description":{"content":"<p>A comma separated list of user IDs that you wish to share the album with.</p>\n","type":"text/plain"},"key":"userIDs","value":"{{userIDs}}"}],"variable":[{"id":"9447dc49-c3e0-421c-907a-af722156d0c5","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"1899b7ea-5113-4e85-944a-23d3a0d7e465"}],"id":"4b0ef989-8f7c-4ca2-96f5-7ab384e4f821","description":"<p>Services for interacting with albums.</p>\n","_postman_id":"4b0ef989-8f7c-4ca2-96f5-7ab384e4f821"},{"name":"Annotations","item":[{"name":"Create annotation","id":"012a0693-b2b5-48fe-ac0d-7c2ba0dc8f02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/createAnnotation?format={{json}}","description":"<blockquote>\n<p>Creates an annotation/comment.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>artworkID (integer)</p>\n</li>\n<li><p>artworkVersion (integer)</p>\n</li>\n<li><p>boxes (array)</p>\n</li>\n<li><p>comment (string)</p>\n</li>\n<li><p>dateActioned (string)</p>\n</li>\n<li><p>dateCreated (string)</p>\n</li>\n<li><p>dateModified (string)</p>\n</li>\n<li><p>id (integer)</p>\n</li>\n<li><p>isEditable (boolean)</p>\n</li>\n<li><p>objectWorkflowStageID (string)</p>\n</li>\n<li><p>pageNo (integer)</p>\n</li>\n<li><p>parent (integer)</p>\n</li>\n<li><p>status (integer)</p>\n</li>\n<li><p>userActioned (integer)</p>\n</li>\n<li><p>userActionedFullName (string)</p>\n</li>\n<li><p>userCreated (integer)</p>\n</li>\n<li><p>userFullName (string)</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","createAnnotation"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"1af02955-ccc5-4c32-9634-f10b3635d53b","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"012a0693-b2b5-48fe-ac0d-7c2ba0dc8f02"},{"name":"Delete annotation","id":"99e20861-ec85-4876-8562-635191fbbae8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/deleteAnnotation?annotationID={{annotationID}}&format={{json}}","description":"<blockquote>\n<p>Deletes an annotation/comment.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","deleteAnnotation"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>annotationID</p>\n","type":"text/plain"},"key":"annotationID","value":"{{annotationID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"c0d44384-9f26-4ef3-956a-4fa7382cdd18","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"99e20861-ec85-4876-8562-635191fbbae8"},{"name":"Get annotations","id":"ff0bc4f7-d584-43ed-8a9f-cb5fbe229a98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAnnotations?assetID={{assetID}}&assetVersion={{assetVersion}}&creatorID={{creatorID}}&format={{json}}&objectWorkflowStageID={{objectWorkflowStageID}}&pageNo={{pageNo}}&parentID={{parentID}}&sortBy={{dateCreated:desc}}","description":"<blockquote>\n<p>Returns a list of annotations/comments.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAnnotations"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetID</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>assetVersion</p>\n","type":"text/plain"},"key":"assetVersion","value":"{{assetVersion}}"},{"description":{"content":"<p>creatorID</p>\n","type":"text/plain"},"key":"creatorID","value":"{{creatorID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>objectWorkflowStageID</p>\n","type":"text/plain"},"key":"objectWorkflowStageID","value":"{{objectWorkflowStageID}}"},{"description":{"content":"<p>pageNo</p>\n","type":"text/plain"},"key":"pageNo","value":"{{pageNo}}"},{"description":{"content":"<p>parentID</p>\n","type":"text/plain"},"key":"parentID","value":"{{parentID}}"},{"description":{"content":"<p>sortBy</p>\n","type":"text/plain"},"key":"sortBy","value":"{{dateCreated:desc}}"}],"variable":[{"id":"b09dedb2-5383-4c49-8b0c-fc111a24bfd9","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"ff0bc4f7-d584-43ed-8a9f-cb5fbe229a98"},{"name":"Get workflow annotation previews","id":"b153f66a-d5ae-4e10-bf84-83e9debefc77","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getWorkflowAnnotationPreviews?assetID={{assetID}}&format={{json}}&isFullScreen={{0}}&objectWorkflowStageID={{objectWorkflowStageID}}","description":"<blockquote>\n<p>Returns preview for annotating an asset in a workflow.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getWorkflowAnnotationPreviews"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset in the middle you wish to get previews for</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this is a fullscreen request or not (should bring back previews of the larger size. 0 = False, 1= True</p>\n","type":"text/plain"},"key":"isFullScreen","value":"{{0}}"},{"description":{"content":"<p>objectWorkflowStageID</p>\n","type":"text/plain"},"key":"objectWorkflowStageID","value":"{{objectWorkflowStageID}}"}],"variable":[{"id":"f8cc2f8e-6a42-41b8-9aca-5faadf7567b2","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"b153f66a-d5ae-4e10-bf84-83e9debefc77"},{"name":"Update comment","id":"b2d87fe3-eda7-4014-8027-b1b177c721f4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/updateComment?annotationID={{annotationID}}&comment={{comment}}&format={{json}}","description":"<blockquote>\n<p>Updates an annotation/comment.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","updateComment"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The ID of the annotation you wish to update.</p>\n","type":"text/plain"},"key":"annotationID","value":"{{annotationID}}"},{"description":{"content":"<p>The new comment text for the given annotation.</p>\n","type":"text/plain"},"key":"comment","value":"{{comment}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"ca8c3b69-2992-485a-a7fe-0a368dacc40b","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"b2d87fe3-eda7-4014-8027-b1b177c721f4"}],"id":"bc965eb5-7731-4cdd-86d1-fcc14ba9a3e9","description":"<p>Services for working with asset annotations.</p>\n","_postman_id":"bc965eb5-7731-4cdd-86d1-fcc14ba9a3e9"},{"name":"Assets","item":[{"name":"Assemble","id":"48ba0573-6821-421a-bd43-a86be2fc3c87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/assemble","description":"<blockquote>\n<p>If you under the /createUploadPath endpoint specified uploadType=multipart, or you didn't specify this and the file was larger than 15MB, you will after uploading each part to need to call this endpoint to assemble the uploaded parts/chunks into one file. See the 'Uploading' section of <a href=\"https://apidocs.brandworkz.com\">apidocs.brandworkz.com</a> for further details on usage.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>objectKey</strong> (string): The object key as previously returned from the /createUploadPath endpoint in the data.keyname value.</p>\n</li>\n<li><p><strong>uploadId</strong> (string): The upload ID obtained previously by calling /createUploadPath.</p>\n</li>\n<li><p><strong>parts</strong> (array): The parts to assemble together. Each part should contain the partNumber, and the eTag, returned in the header when the chunk was uploaded.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","assemble"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"6673eda0-e7de-4519-8aca-3927c4767b8b","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"48ba0573-6821-421a-bd43-a86be2fc3c87"},{"name":"Copy assets","id":"c311bb23-b096-4c3c-b09f-f8e5a59a9515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/copyAssets?assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Sets in session attributes copied_assets and/or copied_shortcuts.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","copyAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetIDs</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>shortcutIDs</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"49859067-b9de-4935-adbd-7a3017a88dba","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"c311bb23-b096-4c3c-b09f-f8e5a59a9515"},{"name":"Create upload path","id":"1ddf4213-b630-4961-a27f-f68b66783d45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/createUploadPath","description":"<blockquote>\n<p>First step to uploading a file. This endpoint will return the upload URL(s) which the file should be PUT to. See the 'Uploading' section of <a href=\"https://apidocs.brandworkz.com\">apidocs.brandworkz.com</a> for further details on usage.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>fileName</strong> (string): The name of the file being uploaded incl suffix. e.g. myLogo.png.</p>\n</li>\n<li><p><strong>fileSize</strong> (integer): The size of the file being uploaded in bytes.</p>\n</li>\n<li><p><strong>categoryGuid</strong> (string): The GUID of the category being uploaded into.</p>\n</li>\n<li><p>assetGuid (string): If you would like to upload a new file/version to an existing asset then specify the assetGuid of the asset you would like to upload this new version to. Also, if you are uploading a custom thumbnail to an existing asset then you must specify this.</p>\n</li>\n<li><p>isCustomThumbnail (boolean): If this is set to true then the path returned will be for uploading a custom thumbnail/preview to an existing asset. You must specify a valid assetGuid if this is set to true and also set the equivalent parameter to true in the subsequent /importAsset endpoint.</p>\n</li>\n<li><p>uploadType (string): Can be either 'single-upload' or 'multipart-upload'. This will control if this function returns a single link for uploading the entire file in one PUT, or an array of links for uploading the file in chunks. If this isn't specified then a single upload link will be returned for files of less than 15MB, and an array of upload links for each 15MB chunk for files larger than this. See the 'Uploading' section of apidocs.brandworkz.com for further guidance on this.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","createUploadPath"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"5ea48c00-b34f-49aa-8a98-bd6800eddb83","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"1ddf4213-b630-4961-a27f-f68b66783d45"},{"name":"Delete assets","id":"03b9fe8b-474f-4ecf-9229-832ec5055a94","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/deleteAssets?assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Deletes the specified asset or shortcut Ids.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","deleteAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetIDs</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>shortcutIDs</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"370a5b9d-110d-42b6-ab97-9400b6b7271c","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"03b9fe8b-474f-4ecf-9229-832ec5055a94"},{"name":"Delete relations","id":"4237daf9-6fd6-41c6-9c90-c450fea9f9c6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/deleteRelations?assetID={{assetID}}&assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Removes the relation between the given assets and shortcuts.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","deleteRelations"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset you wish to remove the assets/shortcuts from.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>IDs of the assets that you wish to remove the relation from.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>IDs of the shortcuts that you wish to remove the relation from.</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"c72c06c7-1122-46bd-b854-6dd1e3d99666","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"4237daf9-6fd6-41c6-9c90-c450fea9f9c6"},{"name":"Get app download links","id":"e102e4be-eeae-40ea-95ab-924a9fad45eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAppDownloadLinks?assetIDs={{assetIDs}}&format={{json}}","description":"<blockquote>\n<p>Gets the download links for the specified assets.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAppDownloadLinks"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetIDs</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"150dff00-3c4a-40c5-b266-dcb34d1c16d1","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"e102e4be-eeae-40ea-95ab-924a9fad45eb"},{"name":"Get asset dependencies","id":"db056a75-8063-4e5d-88bb-457d4494d26f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/assets/:assetIds/dependencies","description":"<blockquote>\n<p>Returns the number of albums, shortcuts and relations the specified asset Ids have.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","assets",":assetIds","dependencies"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"90f0c492-d1a0-42f9-be87-57198f94ac1c","description":{"content":"<p>The asset IDs for which you wish to get dependencies</p>\n","type":"text/plain"},"type":"any","value":"{{assetIds}}","key":"assetIds"},{"id":"01a8c694-39f4-46db-8df8-5654407fd46e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"db056a75-8063-4e5d-88bb-457d4494d26f"},{"name":"Get asset embed form","id":"ef0d0fd4-a2cf-43d5-ba59-fceebbd67e9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getEmbedForm?assetID={{assetID}}&format={{html}}","description":"<blockquote>\n<p>Gets the embed form for the specified asset Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getEmbedForm"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The numeric ID of the asset you would the like the embed link form for.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{html}}"}],"variable":[{"id":"fc0ad9c7-efcc-41da-9cbb-e656b18ba412","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"ef0d0fd4-a2cf-43d5-ba59-fceebbd67e9f"},{"name":"Get asset embed link","id":"62b14378-d8df-4265-89fe-0b9327552068","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getEmbedLink?assetGUID={{assetGUID}}&assetID={{assetID}}&format={{json}}&sourceFields={{sourceFields}}&systemName={{systemName}}&usage={{usage}}","description":"<blockquote>\n<p>Returns the asset embed links for each transform.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getEmbedLink"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The GUID of the asset you would the like the embed link for. You must provide either this parameter or the numeric ID</p>\n","type":"text/plain"},"key":"assetGUID","value":"{{assetGUID}}"},{"description":{"content":"<p>The numeric ID of the asset you would the like the embed link for. You must provide either this parameter or the GUID</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Comma-separated list of metadata fields.<br />The built-in fields for assets are:  <br />title,description,extendedKeywords,breadcrumb,dateCreated,dateModified,objectURL,repositoryFilename,<br />repositoryFolder,thumbnailUrl,GUID,versionGUID,createdBy,createdByUserID,<br />createdByUser_ID,categoryID,fileCategory,icon_class,serialNumber,<br />serialNumberText,version,original_fileName,fileSizeOnDiskKB,orientation,<br />documentFulltext,pixelWidth,pixelHeight,dpi,pagecount,duration,assetExpiry,<br />fileType,filetypeTab,filetype_friendly,colourSpace,folder. </p>\n","type":"text/plain"},"key":"sourceFields","value":"{{sourceFields}}"},{"description":{"content":"<p>The system name of the transform wizard.</p>\n","type":"text/plain"},"key":"systemName","value":"{{systemName}}"},{"description":{"content":"<p>The Transform usage type eg Embed Link, sitecore.</p>\n","type":"text/plain"},"key":"usage","value":"{{usage}}"}],"variable":[{"id":"c54232df-c061-4992-8e15-a97867240b8d","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"62b14378-d8df-4265-89fe-0b9327552068"},{"name":"Get asset embed logs","id":"856d6422-a228-4859-85b7-b2254833db9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetEmbedLogs?assetID={{assetID}}&format={{json}}","description":"<blockquote>\n<p>Gets the embed logs for the specified asset Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetEmbedLogs"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset that you want to process.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"9c431b7f-c3b5-40e2-8b7e-fad0d976f374","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"856d6422-a228-4859-85b7-b2254833db9d"},{"name":"Get asset last modified date","id":"fe572410-3ed2-4480-abe4-2b9687dcd819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/assetLastModified?assetID={{assetID}}&assetVersion={{assetVersion}}","description":"<blockquote>\n<p>Gets the date that the asset was last modified. This includes any metadata, album, or folder related activity.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","assetLastModified"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The ID of the asset you wish to check</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The version of the asset you wish to check</p>\n","type":"text/plain"},"key":"assetVersion","value":"{{assetVersion}}"}],"variable":[{"id":"aeadb191-f7ff-40d1-835e-793c564d8566","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"fe572410-3ed2-4480-abe4-2b9687dcd819"},{"name":"Get asset permissions","id":"4fed4c16-2be7-4e95-a1f2-dc2ac55136ad","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetsPermissions?assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetsPermissions"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetIDs</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>shortcutIDs</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"1bc6c0e1-32e1-48ed-b7e4-16b700c669ea","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"4fed4c16-2be7-4e95-a1f2-dc2ac55136ad"},{"name":"Get asset permissions including transforms","id":"1aec8a4d-5da5-45db-b8c5-c2e378833e1a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/assets/permissions?albumId={{albumId}}&allowedTransformSystemrefs={{allowedTransformSystemrefs}}&assetGuids={{assetGuids}}&assetType={{assetType}}&shortcutGuids={{shortcutGuids}}&usage={{usage}}","description":"<blockquote>\n<p>Gets a user's list of permissions for an asset. You must specify an asset and/or shortcut GUID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","assets","permissions"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Album Id for which to get the transforms and permissions. If using album Id you must also specify asset and/or shortcut GUID of the asset(s) to get the permissions for.</p>\n","type":"text/plain"},"key":"albumId","value":"{{albumId}}"},{"description":{"content":"<p>Optionally limit down to one or more specific transforms by entering their systemref(s) here. Enter as comma-separated list. \nEnter their 'System Name' as entered in the admin UI for that transform</p>\n","type":"text/plain"},"key":"allowedTransformSystemrefs","value":"{{allowedTransformSystemrefs}}"},{"description":{"content":"<p>Asset Guids for which to get the transforms and permissions. More than one can be specified comma-separated.</p>\n","type":"text/plain"},"key":"assetGuids","value":"{{assetGuids}}"},{"description":{"content":"<p>Optionally limit down to just Image or Video transforms. Note that if you pass in Audio, Document, 3D, Other, or Font then you will just get 'Download original' transforms back for those types.</p>\n","type":"text/plain"},"key":"assetType","value":"{{assetType}}"},{"description":{"content":"<p>Shortcut Guids for which to get the transforms and permissions. More than one can be specified comma-separated.</p>\n","type":"text/plain"},"key":"shortcutGuids","value":"{{shortcutGuids}}"},{"description":{"content":"<p>Limit down to transforms marked with a certain usage. Allowed values are CMSBRANDWORKZ, WEBEMBED, SITECORE, WORDPRESS, DRUPAL, OFFICE</p>\n","type":"text/plain"},"key":"usage","value":"{{usage}}"}],"variable":[{"id":"0049fb2d-1f65-432e-b516-6e6a7f289b1d","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"1aec8a4d-5da5-45db-b8c5-c2e378833e1a"},{"name":"Get asset rendition","id":"02a4ad50-00d6-427a-8b56-fdc42655cb01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/getAssetRendition?ag={{ag}}&format={{json}}&s={{s}}","description":"<blockquote>\n<p>Gets a download link for the given asset in the given rendition. Will only return links for users who have the CI Hub integration enabled.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","getAssetRendition"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The assetGuid</p>\n","type":"text/plain"},"key":"ag","value":"{{ag}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The size/rendition. Can be either 'BWKZOriginal' for the original file, or 'BWKZFPO' for a low-res, 72dpi version of the original For Positional Only (FPO) within print-related applications. Note that only bitmap images will have an FPO version, other filetypes will return the original even if BWKZFPO is specified along with an appropriate result.message</p>\n","type":"text/plain"},"key":"s","value":"{{s}}"}],"variable":[{"id":"0561f42b-c1c5-40d4-9773-4a4b531262a5","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"02a4ad50-00d6-427a-8b56-fdc42655cb01"},{"name":"Get asset transforms","id":"4d55037b-9079-43a0-89aa-70147a4dbbe2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/transforms?albumId={{albumId}}&allowedTransformSystemrefs={{allowedTransformSystemrefs}}&assetGuids={{assetGuids}}&assetType={{assetType}}&shortcutGuids={{shortcutGuids}}&usage={{usage}}","description":"<blockquote>\n<p>We highly encourage you to not use this endpoint since it will be removed in future versions. Instead, please use <code>/assets/permissions</code>, which also returns asset transforms.<br />Gets a list of asset transforms, filtered by the specified parameters.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","transforms"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Album Id for which to get the transforms.</p>\n","type":"text/plain"},"key":"albumId","value":"{{albumId}}"},{"description":{"content":"<p>Optionally limit down to one or more specific transforms by entering their systemref(s) here. Enter as comma-separated list. \nEnter their 'System Name' as entered in the admin UI for that transform</p>\n","type":"text/plain"},"key":"allowedTransformSystemrefs","value":"{{allowedTransformSystemrefs}}"},{"description":{"content":"<p>Asset Ids for which to get the transforms.</p>\n","type":"text/plain"},"key":"assetGuids","value":"{{assetGuids}}"},{"description":{"content":"<p>Optionally limit down to just Image or Video transforms. Note that if you pass in Audio, Document, 3D, Other, or Font then you will just get 'Download original' transforms back for those types.</p>\n","type":"text/plain"},"key":"assetType","value":"{{assetType}}"},{"description":{"content":"<p>Shortcut Ids for which to get the transforms.</p>\n","type":"text/plain"},"key":"shortcutGuids","value":"{{shortcutGuids}}"},{"description":{"content":"<p>Limit down to transforms marked with a certain usage. Allowed values are CMSBRANDWORKZ, WEBEMBED, SITECORE, WORDPRESS, DRUPAL, OFFICE</p>\n","type":"text/plain"},"key":"usage","value":"{{usage}}"}],"variable":[{"id":"c9565844-e6f9-450c-8822-d0eef4d74945","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"4d55037b-9079-43a0-89aa-70147a4dbbe2"},{"name":"Get asset usage","id":"47921b05-1caa-478c-b3a2-98eaff7ad3c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getUsage?assetIDs={{assetIDs}}&format={{json}}&summary={{1}}","description":"<blockquote>\n<p>Gets the usage of the given assets, e.g. views, downloads.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getUsage"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset IDs that you wish to get the usage information for.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether you just need a simple count of usage or more details.</p>\n","type":"text/plain"},"key":"summary","value":"{{1}}"}],"variable":[{"id":"64ee50f9-a128-4aef-a775-32b7de033428","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"47921b05-1caa-478c-b3a2-98eaff7ad3c5"},{"name":"Get assets","id":"affe1c12-84f3-4464-aa31-daec9618c088","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssets?assetIDs={{assetIDs}}&format={{json}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Returns the assets for the given IDs. This includes the thumbnail links.</p>\n</blockquote>\n<p>The thumbnails returned are 350x350 (if available). The assets will be returned in the order in which they are passed in.</p>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>IDs of the assets you wish to see.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>IDs of the shortcuts you wish to see. Note: the asset IDs need to be included in the ass</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"17b29e5a-be20-4576-88bb-a20773b4c0db","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"affe1c12-84f3-4464-aa31-daec9618c088"},{"name":"Get category assets","id":"ee8b76dc-7c8e-4ddc-a7f6-7d812c285b72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategoryAssets?assetTypes={{all}}&categoryID={{categoryID}}&fileName={{fileName}}&format={{json}}&integration={{0}}&integrationTemplate={{/ntegrations/assetItem}}&log={{1}}&numberOfResults={{50}}&sortBy={{sortBy}}&sourceFields={{sourceFields}}&start={{1}}","description":"<blockquote>\n<p>Returns the assets for a given category. This includes the thumbnail links, and any video previews required.</p>\n</blockquote>\n<p>The thumbnails returned are 1220x2525 (if available).</p>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategoryAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>A comma separated list of strings representing the types of assets you wish to bring back. Values are all,audio,document,folder,image,template,video</p>\n","type":"text/plain"},"key":"assetTypes","value":"{{all}}"},{"description":{"content":"<p>ID of the category you wish to get assets for.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>This is a basic filter that will only bring back assets that have this value in their file name</p>\n","type":"text/plain"},"key":"fileName","value":"{{fileName}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this call is coming from an integration or not</p>\n","type":"text/plain"},"key":"integration","value":"{{0}}"},{"description":{"content":"<p>The template string to use for this integration</p>\n","type":"text/plain"},"key":"integrationTemplate","value":"{{/ntegrations/assetItem}}"},{"description":{"content":"<p>Whether to log this call as a view to a category</p>\n","type":"text/plain"},"key":"log","value":"{{1}}"},{"description":{"content":"<p>The number of results that you wish to be returned</p>\n","type":"text/plain"},"key":"numberOfResults","value":"{{50}}"},{"description":{"content":"<p>A comma separated list of strings in the format: field:order e.g. alpha:asc,size_disk:asc</p>\n","type":"text/plain"},"key":"sortBy","value":"{{sortBy}}"},{"description":{"content":"<p>This will additionally return extendedKeywords, description, or both.</p>\n","type":"text/plain"},"key":"sourceFields","value":"{{sourceFields}}"},{"description":{"content":"<p>The row of data you wish to start from (for pagination)</p>\n","type":"text/plain"},"key":"start","value":"{{1}}"}],"variable":[{"id":"f8d3475f-008a-46df-ab45-a28c8fc509cf","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"ee8b76dc-7c8e-4ddc-a7f6-7d812c285b72"},{"name":"Get category transforms","id":"921c763b-abac-4882-9701-0e95fc5181be","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategoryTransforms?categoryID={{categoryID}}&format={{json}}&template={{transforms}}","description":"<blockquote>\n<p>Gets the list of available transforms for the specified category/folder Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategoryTransforms"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>categoryID</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>template</p>\n","type":"text/plain"},"key":"template","value":"{{transforms}}"}],"variable":[{"id":"f5a395fb-57ca-4ff1-838e-030992b06f95","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"921c763b-abac-4882-9701-0e95fc5181be"},{"name":"Get download original links","id":"6be637e1-9294-475b-bc04-72fe0e4f33e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getDownloadOriginalLinks?assetIDs={{assetIDs}}&format={{json}}","description":"<blockquote>\n<p>Gets the original artwork paths for the given asset IDs.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getDownloadOriginalLinks"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset IDs that you wish to get the usage information for.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"9ef9cff8-f1d8-49fe-89dc-82f0095ae4ff","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"6be637e1-9294-475b-bc04-72fe0e4f33e7"},{"name":"Get full screen previews","id":"4d53c75e-a633-4fc5-8253-dab21b440313","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getFullScreenPreviews?assetIDs={{assetIDs}}&format={{json}}&pageNumbers={{1}}","description":"<blockquote>\n<p>Returns the full screen thumbnails for the specified asset Ids.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getFullScreenPreviews"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetIDs</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>pageNumbers</p>\n","type":"text/plain"},"key":"pageNumbers","value":"{{1}}"}],"variable":[{"id":"50bd8213-796a-4b3f-8df5-9345b161a4d8","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"4d53c75e-a633-4fc5-8253-dab21b440313"},{"name":"Get large previews","id":"eb355cb7-f430-459c-8376-1734a3dd4ff6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/getLargePreviews?activeID={{0}}&albumID={{albumID}}&assetID={{assetID}}&format={{json}}&isFullScreen={{0}}&post={{post}}&pre={{pre}}&shortcutIDs={{shortcutIDs}}","description":"<blockquote>\n<p>Returns large preview code for the parameters passed in</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","getLargePreviews"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset ID that is to be shown first. Currently used for lazy loading, so as to be able to not have an active asset.</p>\n","type":"text/plain"},"key":"activeID","value":"{{0}}"},{"description":{"content":"<p>ID of the album that you are using, if viewing previews in an album.</p>\n","type":"text/plain"},"key":"albumID","value":"{{albumID}}"},{"description":{"content":"<p>ID of the asset in the middle you wish to get previews for</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this is a fullscreen request or not (should bring back previews of the larger size. 0 = False, 1= True</p>\n","type":"text/plain"},"key":"isFullScreen","value":"{{0}}"},{"description":{"content":"<p>A comma separated list of asset IDs that are to come after the selected asset</p>\n","type":"text/plain"},"key":"post","value":"{{post}}"},{"description":{"content":"<p>A comma separated list of asset IDs that are to precede the selected asset</p>\n","type":"text/plain"},"key":"pre","value":"{{pre}}"},{"description":{"content":"<p>A comma separated list of shortcut IDs, these are used to match up with the asset IDs passed in when we're looking at a shortcut. These can then be used to distinguish them in any output</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"}],"variable":[{"id":"28a666c1-07d1-47f2-8673-874401a9962e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"eb355cb7-f430-459c-8376-1734a3dd4ff6"},{"name":"Get related assets","id":"327e138b-b91a-4438-be6e-588d2d927a69","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetRelatedArtwork?assetID={{assetID}}&format={{json}}","description":"<blockquote>\n<p>Returns the related assets for the given asset ID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetRelatedArtwork"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset you wish to get related assets for.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"c0c32e05-cf19-4680-b4cb-411fd186834d","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"327e138b-b91a-4438-be6e-588d2d927a69"},{"name":"Get related assets","id":"fc2e16c3-b648-48d2-a83c-d05da1265af7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getRelatedAssets?assetID={{assetID}}&format={{json}}","description":"<blockquote>\n<p>Returns the related assets for the given asset Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getRelatedAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset you wish to get related assets for.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"2a8df51c-e82d-4368-abe7-8a24f45a2f06","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"fc2e16c3-b648-48d2-a83c-d05da1265af7"},{"name":"Get related workflows","id":"1685efbc-8c8a-468b-bce5-e2969a1f98f9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetRelatedWorkflows?assetID={{assetID}}&format={{json}}","description":"<blockquote>\n<p>Returns the related workflows for the given asset ID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetRelatedWorkflows"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset you wish to get related workflows for.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"186d80f7-6892-4bf1-96a8-7661d59da4f6","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"1685efbc-8c8a-468b-bce5-e2969a1f98f9"},{"name":"Get thumbnails","id":"bbe2e237-607f-4907-8298-eb31234a08bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetThumbnails?assetIDs={{assetIDs}}&format={{json}}&heights={{heights}}&padColour={{padColour}}&pageNumbers={{pageNumbers}}&scaleType={{scaleType}}&widths={{widths}}","description":"<blockquote>\n<p>Retrieves thumbnails for the specified asset Ids.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetThumbnails"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>assetIDs</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>heights</p>\n","type":"text/plain"},"key":"heights","value":"{{heights}}"},{"description":{"content":"<p>padColour</p>\n","type":"text/plain"},"key":"padColour","value":"{{padColour}}"},{"description":{"content":"<p>A comma separated list of numbers, but also allowed are strings like the following: '1-10', '1..15', or even, '1,2,3,10-30,40'</p>\n","type":"text/plain"},"key":"pageNumbers","value":"{{pageNumbers}}"},{"description":{"content":"<p>scaleType</p>\n","type":"text/plain"},"key":"scaleType","value":"{{scaleType}}"},{"description":{"content":"<p>widths</p>\n","type":"text/plain"},"key":"widths","value":"{{widths}}"}],"variable":[{"id":"5b4afb45-ebef-4f2d-8160-86909fd3fe1d","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"bbe2e237-607f-4907-8298-eb31234a08bf"},{"name":"Get thumbnails versions","id":"f0a371cc-09a3-407b-87fb-e51ae97247ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetThumbnailsVersions?assetIDs={{assetIDs}}&format={{json}}&versions={{1}}","description":"<blockquote>\n<p>Gets the thumbnails for the given asset IDs for the given versions.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetThumbnailsVersions"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset IDs that you wish to get the usage information for.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The versions you wish to retrieve, or -1 if you wish to return all versions.</p>\n","type":"text/plain"},"key":"versions","value":"{{1}}"}],"variable":[{"id":"af3291e0-5b8e-456e-b0ea-930748a9b556","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"f0a371cc-09a3-407b-87fb-e51ae97247ca"},{"name":"Import asset","id":"20337f23-72b9-41c8-8af6-1cfa08d06ee8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/importAsset","description":"<blockquote>\n<p>Once the file/chunks are uploaded - and optionally assembled if uploading chunks - then call this to import the file into the system as an asset. This completes the upload.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>categoryGuid</strong> (string): GUID of category to which file will be imported. See also 'relativePath' below.</p>\n</li>\n<li><p><strong>keyName</strong> (string): As returned from /createUploadPath in the data.keyname value e.g: originals/0004/myLogo_000468_001.png.</p>\n</li>\n<li><p><strong>originalFilename</strong> (string): The name of the file as uploaded by the end-user - e.g. 'myLogo.png'</p>\n</li>\n<li><p><strong>assetId</strong> (integer): As returned from /createUploadPath in the data.assetId value, e.g. 468</p>\n</li>\n<li><p><strong>assetVersion</strong> (integer): As returned from /createUploadPath in the data.assetVersion value, e.g. 1</p>\n</li>\n<li><p><strong>fileSize</strong> (integer): The filesize in bytes.</p>\n</li>\n<li><p>assetGuid (string): If specified then the file will be added as a new version to this existing asset. If the asset doesn't exist, an error will be returned and the uploaded file will be deleted from the server. Note that the asset's title will remain the same and not set to the filename as per what happens when a new v1 gets uploaded.</p>\n</li>\n<li><p>relativePath (string): If specified then the corresponding sub-folder(s) will be created under the current folder (if they don't exist already) and the file imported into this sub-folder. Example '/child/grandchild/'. Use forward slashes, optionally with leading and trailing slash.</p>\n</li>\n<li><p>MD5 (string): If this has been created during he upload process and is known then pass it in as this will avoid having to do it again server-side.</p>\n</li>\n<li><p>duplicateAction (string): Action to perform if a new file is uploaded which has the same filename (minus the suffix) as an existing asset's title in the same folder. Default is 'rename' which will append (2), etc to the Title to make it unique. Can also be 'addversion' which will make it a new version of any identically-named asset. Note that this will be ignored if 'assetGuid' is specified. Also note that a 'nameClash' node (true/false) will be returned in the response json, if there is a clash and this property is set to 'rename'.</p>\n</li>\n<li><p>objectWorkflowStageID (string): Relate the asset to a workflow stage Guid.</p>\n</li>\n<li><p>approved (boolean): Defaults to true. Set to false if the asset should enter the system as unapproved. This should only be used if the artwork is uploaded to a workflow which will later set this to approved.</p>\n</li>\n<li><p>isCustomThumbnail (boolean): Defaults to false. If this is set to true then the file will be imported as a custom thumbnail/preview to an existing asset. You must specify a valid assetGuid if this is set to true.</p>\n</li>\n<li><p>webhookId (string): The webhook Id.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","importAsset"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"076c039d-e2c5-40ff-aa8d-0b43a9f6ebcb","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"20337f23-72b9-41c8-8af6-1cfa08d06ee8"},{"name":"Insert asset embed log","id":"dbdea665-e487-4a46-bd87-aefa599e6cb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/logAssetEmbed","description":"<blockquote>\n<p>Inserts an embed log for the specified asset GUID and parameters.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>application</strong> (string): The name of the application the asset has been integrated into: Wordpress, Drupal, Sitecore, MSWord, MSPowerPoint, MSOutlook, MSExcel, InDesign, Photoshop, Illustrator.</p>\n</li>\n<li><p><strong>assetGuid</strong> (string): The Brandworkz assetGuid of the asset(s) being inserted into an external document/page. If inserting multiple then pass comma-separated list of GUIDs. Between 1 and 500 chars.</p>\n</li>\n<li><p>docGuid (string): If the document/file type which you are inserting assets into supports GUIDs - i.e. have a unique document GUID embedded within it like Adobe CC docs - then please pass this here.</p>\n</li>\n<li><p>fileName (string): Use this only if the \"type\" is \"DOCUMENT\" and the available path is a filepath - as opposed to a URL if using MS Office Online apps. Example myDoc1.docx. If document isn't saved yet and doesn't have a name then pass \"unsaved\"</p>\n</li>\n<li><p>filePath (string): Full path of document the asset is being inserted into. Example C:\\myDocuments\\myDoc1.docx. Use this only if the \"type\" is \"DOCUMENT\" and the available path is a filepath - as opposed to a URL if using e.g. MS Office Online apps.\nNote that if MS Office Online version is used, or equivalent such as Google Docs, then pass the Doc's URL into the \"Url\" parameter.</p>\n</li>\n<li><p>integrationName (string): Can either be the name of the company or product you are creating an integration for, e.g. \"MegaCMS\" or can be used to signify different systems of the same kind, e.g. \"main WordPress site\" and \"China WordPress site\". Not relevant if the system you are integrating with can be specified in the \"application\" parameter and you only have one of these systems.</p>\n</li>\n<li><p><strong>type</strong> (string): If you are doing a document integration (e.g. MS Office or Adobe InDesign) then pass \"DOCUMENT\". If you are doing a CMS integration (e.g. Wordpress) then pass \"CMS\".</p>\n</li>\n<li><p>url (string): Pass in the URL of the page/doc the asset is being inserted into. Use this if \"type\" is \"CMS\" or \"type\" is \"DOCUMENT\" and an online doc editor is used such as Office Online or Google docs.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","logAssetEmbed"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"f95f2e82-cab7-4182-bd7e-cb3fed93030c","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"dbdea665-e487-4a46-bd87-aefa599e6cb1"},{"name":"Insert asset view log","id":"6ad4ffde-3815-4bdd-982b-b5514a1a6b92","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/insertAssetViewLog?albumId={{-1}}&assetID={{assetID}}&format={{json}}","description":"<blockquote>\n<p>Inserts a view log entry for the specified asset Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","insertAssetViewLog"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>albumId</p>\n","type":"text/plain"},"key":"albumId","value":"{{-1}}"},{"description":{"content":"<p>assetID</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"20b6d289-db57-4729-8428-5cc09369efd8","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"6ad4ffde-3815-4bdd-982b-b5514a1a6b92"},{"name":"Move assets","id":"21238cce-cff4-426f-9dfd-5fc2f043f968","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:client_id/moveAssets?assetIDs={{assetIDs}}&format={{json}}&moveType={{1}}&shortcutIDs={{shortcutIDs}}&targetCategoryID={{targetCategoryID}}","description":"<blockquote>\n<p>Moves the specified assets and/or shortcut Ids to the target folder, according to the specified moveType.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","moveAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset Ids you'd like to move</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>This parameter can be one of: <br />1: Move<br />2: Copy<br />3: Create shortcut</p>\n","type":"text/plain"},"key":"moveType","value":"{{1}}"},{"description":{"content":"<p>The shortcut Ids you'd like to move</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"},{"description":{"content":"<p>The target category Id to move assets and/or shortcuts to</p>\n","type":"text/plain"},"key":"targetCategoryID","value":"{{targetCategoryID}}"}],"variable":[{"id":"4c13837e-647f-44ca-b936-f2ad2deb8230","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"21238cce-cff4-426f-9dfd-5fc2f043f968"},{"name":"Relate assets","id":"f9022aa0-d672-4b46-875f-570265d2e2a2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/relateAssets?assetIDs={{assetIDs}}&format={{json}}&toAssetIDs={{toAssetIDs}}&toShortcutIDs={{toShortcutIDs}}","description":"<blockquote>\n<p>Relates the given asset to the given assets and shortcuts. If you do not have permissions to relate all of the assets or shortcuts, then it will still relate those which you do have permissions to relate.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","relateAssets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset you wish to relate the other assets/shortcuts to.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>IDs of the assets that you wish to relate to the given asset.</p>\n","type":"text/plain"},"key":"toAssetIDs","value":"{{toAssetIDs}}"},{"description":{"content":"<p>IDs of the shortcuts that you wish to relate to the given asset.</p>\n","type":"text/plain"},"key":"toShortcutIDs","value":"{{toShortcutIDs}}"}],"variable":[{"id":"d66d43de-ff9a-4dbc-b731-309228f4f1ea","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"f9022aa0-d672-4b46-875f-570265d2e2a2"},{"name":"Retrieves asset permissions including transforms","id":"a9d6e84a-ee69-40a9-9ea3-97904a79a3da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/assets/permissions","description":"<blockquote>\n<p>Retrieves a user's list of permissions for an asset. You must specify an asset and/or shortcut GUID.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>albumId (integer): Album Id for which to get the transforms and permissions. If using album Id you must also specify asset and/or shortcut GUID of the asset(s) to get the permissions for.</p>\n</li>\n<li><p>allowedTransformSystemrefs (string): Optionally limit down to one or more specific transforms by entering their systemref(s) here. Enter as comma-separated list. \nEnter their 'System Name' as entered in the admin UI for that transform</p>\n</li>\n<li><p>assetGuids (string): Asset Guids for which to get the transforms and permissions. More than one can be specified comma-separated.</p>\n</li>\n<li><p>assetType (array): Optionally limit down to just Image or Video transforms. Note that if you pass in Audio, Document, 3D, Other, or Font then you will just get 'Download original' transforms back for those types.</p>\n</li>\n<li><p>listFormat (boolean): Returns the transforms in a list form, instead of a map.</p>\n</li>\n<li><p>shortcutGuids (string): Shortcut Guids for which to get the transforms and permissions. More than one can be specified comma-separated.</p>\n</li>\n<li><p>usage (string): Limit down to transforms marked with a certain usage. Allowed values are CMSBRANDWORKZ, WEBEMBED, SITECORE, WORDPRESS, DRUPAL, OFFICE</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","assets","permissions"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"643942e9-1333-45f3-bede-0ea010c3dec0","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"a9d6e84a-ee69-40a9-9ea3-97904a79a3da"},{"name":"Update assets status","id":"5b3452e1-95f0-46f0-9474-e66e3852c125","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:client_id/setAssetsStatus?assetIDs={{assetIDs}}&format={{json}}&statusValue={{1}}","description":"<blockquote>\n<p>Sets the status of the given assets to the value passed in.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","setAssetsStatus"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>IDs of the assets you wish to set the status for.</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The status value that you wish the assets to have. One of:<br />0: Hidden, only sysadmin can view.<br />1: Published<br />2: View only, no download.</p>\n","type":"text/plain"},"key":"statusValue","value":"{{1}}"}],"variable":[{"id":"527c4635-f6e2-4738-9f10-e4ade5ae670f","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"5b3452e1-95f0-46f0-9474-e66e3852c125"},{"name":"getAssetRelatedShortcuts","id":"b309e9c4-4a35-487f-9610-37e07f5d2834","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getAssetRelatedShortcuts?assetID={{assetID}}&format={{json}}","description":"<blockquote>\n<p>Returns the related shortcuts for the given asset ID</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getAssetRelatedShortcuts"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>ID of the asset you wish to get related shorcuts for.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"8f0eb7ee-2972-4d39-8bc9-3e852f884cf7","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"b309e9c4-4a35-487f-9610-37e07f5d2834"}],"id":"043e8d06-1557-4f10-abc3-71364d9f0f3d","description":"<p>Services for returning assets from folders (categories).</p>\n","_postman_id":"043e8d06-1557-4f10-abc3-71364d9f0f3d"},{"name":"Categories","item":[{"name":"Check category is group home page","id":"39f94a9e-ea8d-4493-85ad-c19fb8940039","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/isCategoryGroupHomePage?categoryID={{categoryID}}&format={{json}}","description":"<blockquote>\n<p>Returns a boolean indicating whether the category is used as a group home page.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","isCategoryGroupHomePage"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category ID to check.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"2fe466ac-a590-4c0d-b2d1-e859b567e4f9","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"39f94a9e-ea8d-4493-85ad-c19fb8940039"},{"name":"Check category password","id":"3c52314d-f205-4b5f-a74d-e04e1b5a6520","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/enterCategoryPassword?categoryID={{0}}&format={{js}}&password={{password}}","description":"<blockquote>\n<p>This endpoint enables a user to enter a password for a password protected category.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","enterCategoryPassword"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category that you wish to enter a password for.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{0}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{js}}"},{"description":{"content":"<p>The password for the category</p>\n","type":"text/plain"},"key":"password","value":"{{password}}"}],"variable":[{"id":"ea42bef8-b0e6-4c82-8c23-f379633646f6","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"3c52314d-f205-4b5f-a74d-e04e1b5a6520"},{"name":"Create category","id":"0c387dfc-81f7-4f4a-8fa4-7c972a8c1ee1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/createCategory?createSubCategories={{1}}&format={{json}}&name={{name}}&parentID={{parentID}}&subCategoryDelimiter={{/}}","description":"<blockquote>\n<p>Creates a category with the given information. You can pass a string like this/is/a-subfolder and the subCategoryDelimiter of \"/\" will create appropriate child folders.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","createCategory"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Switch to create the subfolders in the string in the name parameter. Used with the subCategoryDelimiter parameter.</p>\n","type":"text/plain"},"key":"createSubCategories","value":"{{1}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The name for the category. Base64 encoded</p>\n","type":"text/plain"},"key":"name","value":"{{name}}"},{"description":{"content":"<p>The category ID of the parent for this category.</p>\n","type":"text/plain"},"key":"parentID","value":"{{parentID}}"},{"description":{"content":"<p>Delimiter with which to split the name parameter.</p>\n","type":"text/plain"},"key":"subCategoryDelimiter","value":"{{/}}"}],"variable":[{"id":"638ec925-d8fe-456a-908c-c4ae82d96d06","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"0c387dfc-81f7-4f4a-8fa4-7c972a8c1ee1"},{"name":"Delete category","id":"850c4ee7-0aba-4510-a7c7-aad983c5c5d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:client_id/deleteCategory?categoryID={{categoryID}}&format={{json}}","description":"<blockquote>\n<p>Deletes the given category. You may wish to have a look at the get category dependencies endpoint to gauge the impact of deleting this category.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","deleteCategory"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category ID you wish to delete.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"99ae0634-9e25-4c90-8c95-a3d476e9cc98","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"850c4ee7-0aba-4510-a7c7-aad983c5c5d3"},{"name":"Filter user-allowed categories","id":"f57c5685-cdbe-4833-9803-ba321903dadf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/filterUserAllowedCategories","description":"<blockquote>\n<p>Given an array of objects each object representing the following category information, a label (category name) and a value (category GUID), this function returns a subset of those categories, which is only the categories that the logged in user has permissions to see.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","filterUserAllowedCategories"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"27613677-6150-4a5c-be66-7183a4099c39","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"f57c5685-cdbe-4833-9803-ba321903dadf"},{"name":"Get category children","id":"42a0a04b-e54b-457e-8f42-c601dc3008a4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getSubCategories?categoryID={{categoryID}}&format={{json}}&integration={{0}}&integrationTemplate={{integrations/folderItem}}&limit={{2147483646}}&sortBy={{sortBy}}&start={{0}}","description":"<blockquote>\n<p>Returns the sub categories, with thumbnails for the given category ID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getSubCategories"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category for which you want to get the subcategories</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this call is coming from an integration or not</p>\n","type":"text/plain"},"key":"integration","value":"{{0}}"},{"description":{"content":"<p>The template string to use for this integration</p>\n","type":"text/plain"},"key":"integrationTemplate","value":"{{integrations/folderItem}}"},{"description":{"content":"<p>The maximum number of categories you wish to return. Max value 2147483646</p>\n","type":"text/plain"},"key":"limit","value":"{{2147483646}}"},{"description":{"content":"<p>How you wish to sort the results. If this is blank then it will use the sort options you have in the session.</p>\n","type":"text/plain"},"key":"sortBy","value":"{{sortBy}}"},{"description":{"content":"<p>The starting row for the results (for pagination)</p>\n","type":"text/plain"},"key":"start","value":"{{0}}"}],"variable":[{"id":"369b7892-a5a8-4c64-8b6a-0c26d6554923","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"42a0a04b-e54b-457e-8f42-c601dc3008a4"},{"name":"Get category dependencies","id":"ec747ad4-8faf-46f2-ba2b-4a56f3053680","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategoryDependencies?categoryID={{categoryID}}&format={{json}}","description":"<blockquote>\n<p>Gives you the number of assets and folders that are contained in the given folder. This is useful if you wish to know the effects of deleting the given folder.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategoryDependencies"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category ID that you wish to get the dependencies for.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"bfdeb780-9173-4a6a-8022-41901234fbc0","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"ec747ad4-8faf-46f2-ba2b-4a56f3053680"},{"name":"Get category filters","id":"1a1bf866-8f9d-4c92-958b-f19da2dc8f75","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategoryFilters?format={{json}}&limit={{50}}","description":"<blockquote>\n<p>Returns the filter options that are available for the system.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategoryFilters"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The maximum number of filters you wish to return.</p>\n","type":"text/plain"},"key":"limit","value":"{{50}}"}],"variable":[{"id":"e31537e0-9f51-4cd3-a2ad-d68e9ecb3f56","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"1a1bf866-8f9d-4c92-958b-f19da2dc8f75"},{"name":"Get category information","id":"71020494-ffd0-4acf-a49a-5dd0028c8a40","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategoryInfo?categoryID={{categoryID}}&format={{json}}","description":"<blockquote>\n<p>Returns the basic information for the given category. This includes the name, parent, and number of assets and sub folders.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategoryInfo"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category ID for which you wish to get information.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"1e189daa-3ff0-4d22-a5df-a811501059a1","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"71020494-ffd0-4acf-a49a-5dd0028c8a40"},{"name":"Get category listing","id":"5dc150b1-1949-4b00-88fc-60408cc10618","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategoryListing?assetID={{assetID}}&breadcrumbLimit={{breadcrumbLimit}}&categoryID={{categoryID}}&debug={{0}}&fromSearch={{0}}&selectedAssets={{selectedAssets}}&selectedShortcuts={{selectedShortcuts}}&shortcutID={{shortcutID}}&sortBy={{sortBy}}","description":"<blockquote>\n<p>The main call for the category listing page. It will return an html template that combines calls to albums, navigation, assets, sub category, sorts and filters.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategoryListing"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>If this is given, the large preview option will be fetched for this asset. If both this parameter and the shortcutID parameter are specified, this one takes precedence.</p>\n","type":"text/plain"},"key":"assetID","value":"{{assetID}}"},{"description":{"content":"<p>This is the maximum depth of the breadcrumb that you wish to see. If the path is 6 folders in, and this limit is set to, say 4, then the deepest 4 will be shown, and the highest level parents will be omitted.</p>\n","type":"text/plain"},"key":"breadcrumbLimit","value":"{{breadcrumbLimit}}"},{"description":{"content":"<p>The main parent category for the page.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>Whether to put the call into debug mode.</p>\n","type":"text/plain"},"key":"debug","value":"{{0}}"},{"description":{"content":"<p>Whether we're coming from the search page.</p>\n","type":"text/plain"},"key":"fromSearch","value":"{{0}}"},{"description":{"content":"<p>This is the list of assets that will be in your temporary selection when you load up the page</p>\n","type":"text/plain"},"key":"selectedAssets","value":"{{selectedAssets}}"},{"description":{"content":"<p>This is the list of shortcuts that will be in your temporary selection when you load up the page</p>\n","type":"text/plain"},"key":"selectedShortcuts","value":"{{selectedShortcuts}}"},{"description":{"content":"<p>If this is given, the large preview option will be fetched for this shortcut.</p>\n","type":"text/plain"},"key":"shortcutID","value":"{{shortcutID}}"},{"description":{"content":"<p>How you wish to sort the results. If this is blank then it will use the sort options you have in the session.</p>\n","type":"text/plain"},"key":"sortBy","value":"{{sortBy}}"}],"variable":[{"id":"308bc7d7-5daa-458d-89a0-a880f2a88572","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"5dc150b1-1949-4b00-88fc-60408cc10618"},{"name":"Get category permissions","id":"e38fa468-1d0c-4650-84dc-f3a428c19196","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"},{"key":"Accept","value":"application/json"}],"url":"https://api.brandworkz.com/v1.6/:clientId/categories/permissions?categoryGuids={{categoryGuids}}&categoryIds={{categoryIds}}&cmsWidgetInstanceGuids={{cmsWidgetInstanceGuids}}","description":"<blockquote>\n<p>Gets category permissions for the specified category.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","categories","permissions"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The category GUIDs that you wish to get permissions for.</p>\n","type":"text/plain"},"key":"categoryGuids","value":"{{categoryGuids}}"},{"description":{"content":"<p>The category IDs that you wish to get permissions for.</p>\n","type":"text/plain"},"key":"categoryIds","value":"{{categoryIds}}"},{"description":{"content":"<p>The CMS widget instance GUIDs that you wish to get permissions for.</p>\n","type":"text/plain"},"key":"cmsWidgetInstanceGuids","value":"{{cmsWidgetInstanceGuids}}"}],"variable":[{"id":"a8f1e6f5-ed88-408d-8878-651d7672f591","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"e38fa468-1d0c-4650-84dc-f3a428c19196"},{"name":"Get category sorts","id":"e3edb6de-24a7-41ce-927f-b2b31d0df3f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getCategorySorts?format={{html}}&limit={{50}}","description":"<blockquote>\n<p>Returns the sort options that are available for the system.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getCategorySorts"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{html}}"},{"description":{"content":"<p>The maximum number of sort options you wish to return.</p>\n","type":"text/plain"},"key":"limit","value":"{{50}}"}],"variable":[{"id":"f9698919-18ff-40df-9f30-a241d09d9cca","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"e3edb6de-24a7-41ce-927f-b2b31d0df3f2"},{"name":"Get modified resources","id":"8901174f-fd16-4c42-a037-f85d95d32fc0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getModifiedResources?format={{json}}&modifiedEndDate={{modifiedEndDate}}&modifiedStartDate={{modifiedStartDate}}","description":"<blockquote>\n<p>Returns resources that have either been modified or deleted between the dates specified. If no end date is passed in, then the current time is used.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getModifiedResources"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The optional end date. Should be in the format: yyyy-MM-dd H:m (2015-02-18 16:41)</p>\n","type":"text/plain"},"key":"modifiedEndDate","value":"{{modifiedEndDate}}"},{"description":{"content":"<p>The start date from which to start your search. Should be in the format: yyyy-MM-dd H:m (2015-02-18 16:41)</p>\n","type":"text/plain"},"key":"modifiedStartDate","value":"{{modifiedStartDate}}"}],"variable":[{"id":"3b997cb5-d048-467f-be13-ba2badf63b06","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"8901174f-fd16-4c42-a037-f85d95d32fc0"},{"name":"Get resources page","id":"835a0924-f13e-48aa-948f-c2d15b21cc34","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getResourcesPage?assetTypes={{all}}&categoryID={{categoryID}}&debug={{0}}&fileName={{fileName}}&format={{json}}&log={{1}}&page={{1}}&resultsPerPage={{10}}&sortBy={{sortBy}}&sourceFields={{sourceFields}}","description":"<blockquote>\n<p>Returns the subcategories and assets for the given category ID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getResourcesPage"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>A comma separated list of strings representing the types of assets you wish to bring back. Values are all,audio,document,folder,image,template,video</p>\n","type":"text/plain"},"key":"assetTypes","value":"{{all}}"},{"description":{"content":"<p>The category for which you want to get the subcategories</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>debug</p>\n","type":"text/plain"},"key":"debug","value":"{{0}}"},{"description":{"content":"<p>This is a basic filter that will only bring back assets that have this value in their file name</p>\n","type":"text/plain"},"key":"fileName","value":"{{fileName}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether to log this call as a view to a category</p>\n","type":"text/plain"},"key":"log","value":"{{1}}"},{"description":{"content":"<p>The page you require</p>\n","type":"text/plain"},"key":"page","value":"{{1}}"},{"description":{"content":"<p>The maximum number of resources on a page</p>\n","type":"text/plain"},"key":"resultsPerPage","value":"{{10}}"},{"description":{"content":"<p>How you wish to sort the results. If this is blank then it will use the sort options you have in the session.</p>\n","type":"text/plain"},"key":"sortBy","value":"{{sortBy}}"},{"description":{"content":"<p>This will additionally return extendedKeywords, description, or both. Values are extendedKeywords, description, or both. </p>\n","type":"text/plain"},"key":"sourceFields","value":"{{sourceFields}}"}],"variable":[{"id":"9ecda12b-af5d-43c8-8833-b78c2fe21e26","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"835a0924-f13e-48aa-948f-c2d15b21cc34"},{"name":"Move categories","id":"c8b7e5cf-584e-4941-a453-82a52c506a13","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/moveCategory?categoryIDs={{categoryIDs}}&format={{json}}&targetID={{targetID}}","description":"<blockquote>\n<p>Moves the given categories into the target category. The number returned is the number of categories that were moved</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","moveCategory"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Comma separated list of category IDs that you wish to move</p>\n","type":"text/plain"},"key":"categoryIDs","value":"{{categoryIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The category ID that you wish to move the categoryIDs into</p>\n","type":"text/plain"},"key":"targetID","value":"{{targetID}}"}],"variable":[{"id":"d2000d7c-9c2b-46eb-869a-279dc33d263e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"c8b7e5cf-584e-4941-a453-82a52c506a13"},{"name":"getDNS","id":"88a7b05d-d7e3-4b52-9613-37a739006b8e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/getDNS?host_name={{host_name}}","description":"<blockquote>\n<p>Returns the value of doing a DNS lookup for the given hostname on the server. This is useful to check if Java is caching DNS lookups</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6","getDNS"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The hostname you wish to run the DNS for</p>\n","type":"text/plain"},"key":"host_name","value":"{{host_name}}"}],"variable":[]}},"response":[],"_postman_id":"88a7b05d-d7e3-4b52-9613-37a739006b8e"}],"id":"106622c7-1c84-4f74-aba8-fd51e914d807","description":"<p>Services for getting category/folder information.</p>\n","_postman_id":"106622c7-1c84-4f74-aba8-fd51e914d807"},{"name":"CMS","item":[{"name":"Add widget to CMS template","id":"3a125df5-e009-4145-ba4d-6cfaa4d1f58c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templates/:templateGuid/templateWidgets?column={{column}}&position={{position}}&widgetGuid={{widgetGuid}}","description":"<blockquote>\n<p>Adds a widget to a CMS template.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templates",":templateGuid","templateWidgets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The column of the Widget.</p>\n","type":"text/plain"},"key":"column","value":"{{column}}"},{"description":{"content":"<p>The position of the Widget.</p>\n","type":"text/plain"},"key":"position","value":"{{position}}"},{"description":{"content":"<p>The CMS Widget GUID this template widget will be based on.</p>\n","type":"text/plain"},"key":"widgetGuid","value":"{{widgetGuid}}"}],"variable":[{"id":"8fa9fee2-73c1-42f1-a8d9-acbbb59a42b6","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"555e38e1-2604-40db-b524-ab93372170fe","description":{"content":"<p>The template GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{templateGuid}}","key":"templateGuid"}]}},"response":[],"_postman_id":"3a125df5-e009-4145-ba4d-6cfaa4d1f58c"},{"name":"Create CMS page with the given template applied","id":"9db20c17-907c-4cec-a60f-60dfedbd3951","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/page/:categoryGuid/:templateGuid","description":"<blockquote>\n<p>Creates a new CMS page with the given template applied.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","page",":categoryGuid",":templateGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"f3b7f367-1b6d-4357-b89c-cf263a26aa9c","description":{"content":"<p>The category GUID to create a page for</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"72bf2611-5984-4f9e-bd17-76d31789d3c0","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"27b44315-bf5c-45ac-a789-8122fd25c2aa","description":{"content":"<p>The template GUID to apply to the page</p>\n","type":"text/plain"},"type":"any","value":"{{templateGuid}}","key":"templateGuid"}]}},"response":[],"_postman_id":"9db20c17-907c-4cec-a60f-60dfedbd3951"},{"name":"Create CMS template","id":"a2b11ace-de61-4515-bcb6-4d7d8d3c7823","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templates","description":"<blockquote>\n<p>Creates a new template.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>name</strong> (string): The name of the template.</p>\n</li>\n<li><p>image (string): The template image.</p>\n</li>\n<li><p>description (string): The template description.</p>\n</li>\n<li><p><strong>properties</strong> (string): The properties of the template, in XML format.</p>\n</li>\n<li><p><strong>categoryGuid</strong> (string): The category GUID this template will be created for.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templates"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"47d35674-9faf-450c-a156-16e011fa9c19","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"a2b11ace-de61-4515-bcb6-4d7d8d3c7823"},{"name":"Create CMS widget instance","id":"6a52bb7f-7eca-4271-b5da-90afaf21c53b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templates/:templateWidgetGuid/:categoryGuid/widgetInstance","description":"<blockquote>\n<p>Creates a CMS widget instance on the specified page GUID and based on the passed template widget GUID</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templates",":templateWidgetGuid",":categoryGuid","widgetInstance"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"a6e37aa9-0287-48d7-9b19-789e651aa34a","description":{"content":"<p>The category GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"96828fb1-2567-445a-8724-165688e71a75","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"ec47a2a0-55c1-4f99-89ac-8cb384365ffb","description":{"content":"<p>The template widget GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{templateWidgetGuid}}","key":"templateWidgetGuid"}]}},"response":[],"_postman_id":"6a52bb7f-7eca-4271-b5da-90afaf21c53b"},{"name":"Create blank CMS","id":"d653c0c5-7f74-49b2-8d4c-f89345efd27b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/page/:categoryGuid","description":"<blockquote>\n<p>Creates a new blank CMS page.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","page",":categoryGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"a59eb5c9-0fd4-449e-a4de-a33af56a06a2","description":{"content":"<p>The category GUID to create a page for</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"50ea3b08-a6a0-4429-9de3-31bd8c18984c","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"d653c0c5-7f74-49b2-8d4c-f89345efd27b"},{"name":"Delete CMS Page","id":"dd4d7777-8f68-49fe-81a2-22053a8e03b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/page/:categoryGuid","description":"<blockquote>\n<p>Deletes the CMS page for the specified category GUID. It also deletes the category.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","page",":categoryGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"e0645f71-a4ab-460d-b379-9fe61937cfa7","description":{"content":"<p>The category GUID to delete a page from.</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"f5f9c1b9-efd7-499e-8133-aad85bfff287","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"dd4d7777-8f68-49fe-81a2-22053a8e03b0"},{"name":"Delete CMS template","id":"221aa61f-de8d-428f-b586-a8ad90cae6b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templates/:templateGuid","description":"<blockquote>\n<p>Deletes the specified CMS template. It also deletes the associated category.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templates",":templateGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"217969e3-12fb-4420-8339-f8c59272a052","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"9e0a91aa-3a40-4ae1-a496-32ba0c4e66f3","description":{"content":"<p>The template GUID to delete</p>\n","type":"text/plain"},"type":"any","value":"{{templateGuid}}","key":"templateGuid"}]}},"response":[],"_postman_id":"221aa61f-de8d-428f-b586-a8ad90cae6b4"},{"name":"Delete CMS template widget","id":"75f6c868-3b9b-4bb1-be10-26fe1e4cd60c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templateWidgets/:templateWidgetGuid","description":"<blockquote>\n<p>Deletes the specified template widget.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templateWidgets",":templateWidgetGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"188b3931-c2cc-4ad6-b1bd-e83f5f7a89cf","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"b4b2d816-3256-4156-ae49-30bbca6103d9","description":{"content":"<p>The template widget GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{templateWidgetGuid}}","key":"templateWidgetGuid"}]}},"response":[],"_postman_id":"75f6c868-3b9b-4bb1-be10-26fe1e4cd60c"},{"name":"Duplicate page","id":"d1fe569e-9ff8-47f8-8f13-d48567962233","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/page/duplicate/:fromCategoryGuid/:categoryGuid","description":"<blockquote>\n<p>Creates a page duplicate from the specified category to the one also specified.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","page","duplicate",":fromCategoryGuid",":categoryGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"da8ca3d5-8795-48fc-8c91-7faea8e75b73","description":{"content":"<p>The category GUID to use for the duplication.</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"53372b14-9cf4-41cc-a2f1-6ac65821ce54","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"687a3d92-354c-4350-8742-53e4c56380d1","description":{"content":"<p>The category Guid to copy from.</p>\n","type":"text/plain"},"type":"any","value":"{{fromCategoryGuid}}","key":"fromCategoryGuid"}]}},"response":[],"_postman_id":"d1fe569e-9ff8-47f8-8f13-d48567962233"},{"name":"Get CMS template","id":"6eb3eaee-55f5-4c5a-b07e-345bcec6a19f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templates/:templateGuid?retrieveWidgets={{false}}","description":"<blockquote>\n<p>Gets the specified CMS template.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templates",":templateGuid"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Specifies if the widgets on this template should also be returned.</p>\n","type":"text/plain"},"key":"retrieveWidgets","value":"{{false}}"}],"variable":[{"id":"40f38baa-3101-4b5a-b066-dc2d474ef8ad","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"ea1564aa-919b-4a40-92e5-3447f1de729e","description":{"content":"<p>The template GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{templateGuid}}","key":"templateGuid"}]}},"response":[],"_postman_id":"6eb3eaee-55f5-4c5a-b07e-345bcec6a19f"},{"name":"Get CMS template for the given category","id":"f4db052c-b005-4e01-8dc7-aa285b878a63","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/template/:categoryGuid","description":"<blockquote>\n<p>Gets the CMS template for the specified category.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","template",":categoryGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"77688a79-7556-4fa4-86c0-8677226dab9e","description":{"content":"<p>The category GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"54c1ee99-2a8c-48b2-9320-4aa43b6c5a12","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"f4db052c-b005-4e01-8dc7-aa285b878a63"},{"name":"Get CMS template widget","id":"2ff07ee1-59a2-471d-99ba-b550b5176c6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templateWidgets/:templateWidgetGuid","description":"<blockquote>\n<p>Gets the specified template widget.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templateWidgets",":templateWidgetGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"dfc3fae4-d64e-4c68-b610-9cdece7f4c54","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"7df499ad-d943-4ab1-9677-d74b20709626","description":{"content":"<p>The template widget GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{templateWidgetGuid}}","key":"templateWidgetGuid"}]}},"response":[],"_postman_id":"2ff07ee1-59a2-471d-99ba-b550b5176c6c"},{"name":"Get CMS widget instance","id":"7da7fdfc-fc03-4041-97d6-c6376d9a5b18","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/widgetInstances/:widgetInstanceGuid?includeMetaset={{false}}","description":"<blockquote>\n<p>Gets the specified widget instance.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","widgetInstances",":widgetInstanceGuid"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Flag to whether to include the metaset in its response.</p>\n","type":"text/plain"},"key":"includeMetaset","value":"{{false}}"}],"variable":[{"id":"f6e95d73-9170-405a-b26e-30c6359cb2d9","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"c0ddf975-d92a-48d3-9b24-aca37dc634fb","description":{"content":"<p>The widget instance GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{widgetInstanceGuid}}","key":"widgetInstanceGuid"}]}},"response":[],"_postman_id":"7da7fdfc-fc03-4041-97d6-c6376d9a5b18"},{"name":"Get CMS widget instance for the login Admin","id":"4e20e15e-f67b-42c4-8439-e6bb740215c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/loginAdmin","description":"<blockquote>\n<p>Gets the widget instance for the login admin.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","loginAdmin"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"e5e9bad6-b96f-411b-b181-8f09d140adcf","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"4e20e15e-f67b-42c4-8439-e6bb740215c3"},{"name":"Get the code preview HTML for the given GUID.","id":"4a75ac8b-c767-451f-b953-a5c99de1a609","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/widget/codePreview/:previewGuid","description":"<blockquote>\n<p>Get the code preview HTML for the given GUID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","widget","codePreview",":previewGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"15599b8f-9023-4e37-918f-b1b077c5c395","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"58b8d942-bff8-4995-9cdb-69ea21627f5f","description":{"content":"<p>The GUID of the preview you wish to see.</p>\n","type":"text/plain"},"type":"any","value":"{{previewGuid}}","key":"previewGuid"}]}},"response":[],"_postman_id":"4a75ac8b-c767-451f-b953-a5c99de1a609"},{"name":"Modify CMS template","id":"559e7be3-fb19-42b5-b97d-9f1cb9eaa33d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templates/:templateGuid","description":"<blockquote>\n<p>Modifies the specified CMS template.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>name</strong> (string): The updated name of the template.</p>\n</li>\n<li><p>image (string): The template image.</p>\n</li>\n<li><p>description (string): The template description.</p>\n</li>\n<li><p><strong>properties</strong> (string): The properties of the template, in XML format.</p>\n</li>\n<li><p><strong>categoryGuid</strong> (string): The category GUID this template will be created for.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templates",":templateGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"83cf093b-870d-4cfd-b905-19861f42af8d","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"a61a3e28-70c4-4c87-b42d-45b005d086b5","description":{"content":"<p>The template GUID to modify</p>\n","type":"text/plain"},"type":"any","value":"{{templateGuid}}","key":"templateGuid"}]}},"response":[],"_postman_id":"559e7be3-fb19-42b5-b97d-9f1cb9eaa33d"},{"name":"Modify CMS template widget","id":"a4ca856a-780d-488d-b270-e0d5e0fc58e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/templateWidgets/:templateWidgetGuid?column={{column}}&position={{position}}","description":"<blockquote>\n<p>Modifies the specified template widget.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","templateWidgets",":templateWidgetGuid"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The column of the Widget.</p>\n","type":"text/plain"},"key":"column","value":"{{column}}"},{"description":{"content":"<p>The position of the Widget.</p>\n","type":"text/plain"},"key":"position","value":"{{position}}"}],"variable":[{"id":"e38555da-0873-4053-8317-034ffe946dd5","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"e9219e03-b8d2-481a-9473-ab6c40ef03ab","description":{"content":"<p>The template widget GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{templateWidgetGuid}}","key":"templateWidgetGuid"}]}},"response":[],"_postman_id":"a4ca856a-780d-488d-b270-e0d5e0fc58e4"},{"name":"Modify CMS widget instance","id":"2c713e80-3504-4116-b889-206335a42e91","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/widgetInstances/:widgetInstanceGuid","description":"<blockquote>\n<p>Modifies the specified widget instance.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","widgetInstances",":widgetInstanceGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"2e5bd8cf-01ac-4928-a4ee-cf7964ab8f1b","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"b35143cd-bc47-4ca0-b230-3f9900184455","description":{"content":"<p>The widget instance GUID.</p>\n","type":"text/plain"},"type":"any","value":"{{widgetInstanceGuid}}","key":"widgetInstanceGuid"}]}},"response":[],"_postman_id":"2c713e80-3504-4116-b889-206335a42e91"},{"name":"Save code preview content","id":"1f0af971-1f92-466a-982a-df2dc21e6178","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/widget/codePreview?css={{css}}&html={{html}}&javascript={{javascript}}","description":"<blockquote>\n<p>Saves the specified code content for the code preview block.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","widget","codePreview"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The CSS that is to be stored for a preview.</p>\n","type":"text/plain"},"key":"css","value":"{{css}}"},{"description":{"content":"<p>The HTML that is to be stored for a preview.</p>\n","type":"text/plain"},"key":"html","value":"{{html}}"},{"description":{"content":"<p>The JS that is to be stored for a preview.</p>\n","type":"text/plain"},"key":"javascript","value":"{{javascript}}"}],"variable":[{"id":"f2eef2b4-a531-4b19-9167-ef814f8acbdb","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"1f0af971-1f92-466a-982a-df2dc21e6178"},{"name":"Save the contents of the given GUID permanently","id":"00b85bab-a7f9-43ca-858e-15ad3b9780c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/widget/codePreview/:previewGuid","description":"<blockquote>\n<p>Saves the contents of the specified code preview widget.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","widget","codePreview",":previewGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"c9a7428e-6d67-4125-a7ad-0ba53489a43f","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"e1612a52-e5f6-455a-bc49-c6df24a7a497","description":{"content":"<p>The GUID of the preview you wish to see.</p>\n","type":"text/plain"},"type":"any","value":"{{previewGuid}}","key":"previewGuid"}]}},"response":[],"_postman_id":"00b85bab-a7f9-43ca-858e-15ad3b9780c0"}],"id":"ae976480-6594-4fec-8b83-f5c806e77e81","description":"<p>Services to manage CMS pages, widgets and templates.</p>\n","_postman_id":"ae976480-6594-4fec-8b83-f5c806e77e81"},{"name":"Integration","item":[{"name":"Add integration","id":"78f6419f-2666-42ea-b4dd-c596a3c44ce0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/integrations","description":"<blockquote>\n<p>Adds a new integration.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>type (string): The integration type. By default it's custom. For more types, check the list integration types endpoint.</p>\n</li>\n<li><p><strong>name</strong> (string): The integration name.</p>\n</li>\n<li><p>description (string): The integration description.</p>\n</li>\n<li><p>imageUrl (string): The integration image URL to display on the integrations listing page.</p>\n</li>\n<li><p><strong>metadata</strong> (object): The integration metadata. Depending on the integration type, the integration metadata fields can differ. Check the get integration template endpoint.</p>\n</li>\n<li><p>parameters (object): The integration parameters.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"77e89c36-a20f-433a-b7c0-defde5b3460e","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"78f6419f-2666-42ea-b4dd-c596a3c44ce0"},{"name":"Disable integration","id":"19537487-bb20-4243-8ce8-5da703623b68","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/:integrationGuid/disable","description":"<blockquote>\n<p>Marks an integration as disabled.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations",":integrationGuid","disable"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"7c591da8-64f8-496c-8fc8-0196f1860cd0","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"4b6d06e6-0d59-4ae6-b825-03b7348570ef","description":{"content":"<p>integrationGuid</p>\n","type":"text/plain"},"type":"any","value":"{{integrationGuid}}","key":"integrationGuid"}]}},"response":[],"_postman_id":"19537487-bb20-4243-8ce8-5da703623b68"},{"name":"Edit integration","id":"3d98ea2d-955d-44dd-8421-3ca04ba60819","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/:integrationGuid","description":"<blockquote>\n<p>Modifies an existing integration.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>type (string): The integration type. By default it's custom. For more types, check the list integration types endpoint.</p>\n</li>\n<li><p><strong>name</strong> (string): The integration name.</p>\n</li>\n<li><p>description (string): The integration description.</p>\n</li>\n<li><p>imageUrl (string): The integration image URL to display on the integrations listing page.</p>\n</li>\n<li><p><strong>metadata</strong> (object): The integration metadata. Depending on the integration type, the integration metadata fields can differ. Check the get integration template endpoint.</p>\n</li>\n<li><p>parameters (object): The integration parameters.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations",":integrationGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"aa5dddce-a1d0-410a-8e94-505d3c5bb892","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"cd86aca7-1767-4964-9694-7020573b1830","description":{"content":"<p>integrationGuid</p>\n","type":"text/plain"},"type":"any","value":"{{integrationGuid}}","key":"integrationGuid"}]}},"response":[],"_postman_id":"3d98ea2d-955d-44dd-8421-3ca04ba60819"},{"name":"Edit integration parameters","id":"906eccde-d121-4b05-bd05-308b343d6b02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/:integrationGuid/parameters","description":"<blockquote>\n<p>Modifies custom parameters for an existing integration.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li>license: The license parameters for this integration.</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations",":integrationGuid","parameters"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"c58a4fd4-f607-4b08-ab97-74e19e4f5abd","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"e60445b5-51c3-43c7-a596-c40494e66b85","description":{"content":"<p>integrationGuid</p>\n","type":"text/plain"},"type":"any","value":"{{integrationGuid}}","key":"integrationGuid"}]}},"response":[],"_postman_id":"906eccde-d121-4b05-bd05-308b343d6b02"},{"name":"Enable integration","id":"d67737cf-984d-45c7-b589-57234936d3ce","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/:integrationGuid/enable","description":"<blockquote>\n<p>Marks an integration as enabled.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations",":integrationGuid","enable"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"946c86b4-c5e0-483b-afc9-3709d8750c38","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"d3999a95-1458-4351-a094-bc2e2fd1490b","description":{"content":"<p>integrationGuid</p>\n","type":"text/plain"},"type":"any","value":"{{integrationGuid}}","key":"integrationGuid"}]}},"response":[],"_postman_id":"d67737cf-984d-45c7-b589-57234936d3ce"},{"name":"Get asset insert web-app","id":"3e34f6d5-73f7-4b74-8527-d9ac8e22af25","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:clientId/assetInsert?allowedTransformSystemrefs={{allowedTransformSystemrefs}}&application={{application}}&assetType={{assetType}}&collapse={{true}}&createdByUserId={{createdByUserId}}&docGuid={{docGuid}}&enableDetailView={{true}}&enableMultiSelect={{false}}&fileName={{fileName}}&filePath={{filePath}}&integrationName={{integrationName}}&size={{50}}&type={{type}}&url={{url}}&usage={{usage}}","description":"<blockquote>\n<p>Returns an embeddable web-application where end-users can search/browser for assets and select them for insertion into a 3rd party system such as a CMS, CRM or eCommerce app. For specific usage guidelines on this API call please contact Brandworkz.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","assetInsert"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>To limit the insert dropdown down to just some named image/video transforms based on entering their systemrefs</p>\n","type":"text/plain"},"key":"allowedTransformSystemrefs","value":"{{allowedTransformSystemrefs}}"},{"description":{"content":"<p>The name of the application the asset has been integrated into: Wordpress MSWord MSPowerPoint MSOutlook MSExcel InDesign Photoshop Illustrator.</p>\n","type":"text/plain"},"key":"application","value":"{{application}}"},{"description":{"content":"<p>Extra ES search clause which will limit down to just the specified assetType's<br />Can be: Image, Document, Video, Audio</p>\n","type":"text/plain"},"key":"assetType","value":"{{assetType}}"},{"description":{"content":"<p>Collapse folders or not.</p>\n","type":"text/plain"},"key":"collapse","value":"{{true}}"},{"description":{"content":"<p>If you pass in the UserGuid for a brandworkz user, then only assets they have created/uploaded will get returned.</p>\n","type":"text/plain"},"key":"createdByUserId","value":"{{createdByUserId}}"},{"description":{"content":"<p>If the document/file type which you are inserting assets into supports GUIDs - i.e. have a unique document GUID embedded within it - then please pass this here.</p>\n","type":"text/plain"},"key":"docGuid","value":"{{docGuid}}"},{"description":{"content":"<p>Whether or not the end-user can double-click on a thumbnail and go to the detailed view</p>\n","type":"text/plain"},"key":"enableDetailView","value":"{{true}}"},{"description":{"content":"<p>Whether or not end user can select multiple assets</p>\n","type":"text/plain"},"key":"enableMultiSelect","value":"{{false}}"},{"description":{"content":"<p>The filename of the document which the asset is being inserted into. e.g. myDoc1.docx If document isn't saved yet then pass 'unsaved'. Between 1 and 255 chars</p>\n","type":"text/plain"},"key":"fileName","value":"{{fileName}}"},{"description":{"content":"<p>If the type is DOCUMENT, the full filepath of the document which the asset is being inserted into, typically the user's local drive or a network share where the document is stored. E.g. C:\\myDocuments\\myDoc1.docx, If document isn't saved yet then pass \"unsaved\". If the type is CMS the URL of the page on which this asset is being used. Between 1 and 1000 chars</p>\n","type":"text/plain"},"key":"filePath","value":"{{filePath}}"},{"description":{"content":"<p>Typically the name of the company or product you are creating an integration for, e.g. \"Templafy\". Between 1 and 20 chars</p>\n","type":"text/plain"},"key":"integrationName","value":"{{integrationName}}"},{"description":{"content":"<p>Max results to return. Defaults to 50. Max is 500.</p>\n","type":"text/plain"},"key":"size","value":"{{50}}"},{"description":{"content":"<p>If you are doing a document integration (e.g. MS Office or Adobe InDesign) then pass \"DOCUMENT\" If you are doing a CMS integration (e.g. Wordpress) then pass \"CMS\".</p>\n","type":"text/plain"},"key":"type","value":"{{type}}"},{"description":{"content":"<p>Pass in the URL of the page/doc the asset is being inserted into. Use this if \"type\" is \"CMS\" or \"type\" is \"DOCUMENT\" and an online doc editor is used such as Office Online or Google docs.</p>\n","type":"text/plain"},"key":"url","value":"{{url}}"},{"description":{"content":"<p>Limit down to transforms marked with a certain usage. Allowed values are: CMSBRANDWORKZ, WEBEMBED, SITECORE, WORDPRESS, OFFICE, DRUPAL</p>\n","type":"text/plain"},"key":"usage","value":"{{usage}}"}],"variable":[{"id":"d658c1e5-b6b4-4299-b0f5-32f4b99f7770","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"3e34f6d5-73f7-4b74-8527-d9ac8e22af25"},{"name":"Get integration audit info","id":"5c963b96-9a4a-4182-8773-812d80de8e16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/:integrationGuid/audit","description":"<blockquote>\n<p>Gets integration audit info.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations",":integrationGuid","audit"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"06a79b0c-0710-4b22-bc5e-4b28379e5564","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"ad886c69-8e1a-4216-b233-24e06ffbb2b5","description":{"content":"<p>integrationGuid</p>\n","type":"text/plain"},"type":"any","value":"{{integrationGuid}}","key":"integrationGuid"}]}},"response":[],"_postman_id":"5c963b96-9a4a-4182-8773-812d80de8e16"},{"name":"Get integration template","id":"17852b74-8dfc-4b1f-a47e-b312ca531f6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/templates?type={{custom}}","description":"<blockquote>\n<p>Gets an integration template.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations","templates"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>type</p>\n","type":"text/plain"},"key":"type","value":"{{custom}}"}],"variable":[{"id":"78a5930d-f514-46ef-951e-0df213cc05cf","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"17852b74-8dfc-4b1f-a47e-b312ca531f6c"},{"name":"Get login page","id":"2a9fbc9d-245d-4b1f-8a9c-178b5a373d1b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getLoginPage?format={{html}}&userLogin={{userLogin}}&userPassword={{userPassword}}","description":"<blockquote>\n<p>Gets a simple login page for integrations.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getLoginPage"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{html}}"},{"description":{"content":"<p>Base64 encoded user's login name</p>\n","type":"text/plain"},"key":"userLogin","value":"{{userLogin}}"},{"description":{"content":"<p>The user's password</p>\n","type":"text/plain"},"key":"userPassword","value":"{{userPassword}}"}],"variable":[{"id":"166e95e2-c9fa-4eb5-a9b3-8a4926048129","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"2a9fbc9d-245d-4b1f-8a9c-178b5a373d1b"},{"name":"List integration types","id":"48c157c9-d545-4ecf-8efd-6f8eefe1417c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/integrations/types","description":"<blockquote>\n<p>Gets the list of integration types.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations","types"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"18b31b95-ebc9-41d0-8be7-1b9cfbc9a88a","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"48c157c9-d545-4ecf-8efd-6f8eefe1417c"},{"name":"List integrations","id":"0ff5ebdf-1fc3-460e-9da6-e0d63e932d98","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/integrations","description":"<blockquote>\n<p>Gets a list of integrations.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","integrations"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"8cc58411-0d00-4323-b477-2a0a68866b82","description":{"content":"<p>client_id</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"0ff5ebdf-1fc3-460e-9da6-e0d63e932d98"}],"id":"85ee5794-e448-43ca-bcd8-cb77e0f0ab78","description":"<p>Services specific for integrations.</p>\n","_postman_id":"85ee5794-e448-43ca-bcd8-cb77e0f0ab78"},{"name":"Metadata","item":[{"name":"Get album asset metadata","id":"f65fa371-3324-42be-81ba-e143c68565cf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:clientId/getAlbumAssetMetadata?assetIds={{assetIds}}&format={{json}}&shortcutIds={{shortcutIds}}","description":"<blockquote>\n<p>Gets metadata for the specified album asset Ids.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","getAlbumAssetMetadata"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset IDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"assetIds","value":"{{assetIds}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The shortcut IDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"shortcutIds","value":"{{shortcutIds}}"}],"variable":[{"id":"6cf48051-7526-4da8-9d81-487e40b5724e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"f65fa371-3324-42be-81ba-e143c68565cf"},{"name":"Get assets metadata","id":"595c43a9-7c84-4cb5-9c6a-05c917b12c29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/metadata/asset?assetGuids={{assetGuids}}&shortcutGuids={{shortcutGuids}}&type={{tags,technical}}","description":"<blockquote>\n<p>Gets metadata for the specified asset and/or shortcut GUIDs.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","metadata","asset"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset GUIDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"assetGuids","value":"{{assetGuids}}"},{"description":{"content":"<p>The shortcut GUIDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"shortcutGuids","value":"{{shortcutGuids}}"},{"description":{"content":"<p>The types of metadata that are required</p>\n","type":"text/plain"},"key":"type","value":"{{tags,technical}}"}],"variable":[{"id":"cd67cacd-f102-4341-8c9c-3032909cf403","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"595c43a9-7c84-4cb5-9c6a-05c917b12c29"},{"name":"Get current user metadata","id":"5e1973aa-379a-4ba8-9a24-ef4da095daa2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/metadata/user","description":"<blockquote>\n<p>Gets metadata for the authenticated user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","metadata","user"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"068226a7-160d-4946-af61-e9ccb56c56b4","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"5e1973aa-379a-4ba8-9a24-ef4da095daa2"},{"name":"Get embedded metadata","id":"034fd431-b4fd-4d23-8275-e73c4d33669e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:clientId/getEmbeddedMetadata?assetIDs={{assetIDs}}&format={{json}}","description":"<blockquote>\n<p>Gets the metadata embedded in the asset file.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","getEmbeddedMetadata"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset IDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"51bc9068-3014-463b-90df-61a919e6eba9","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"034fd431-b4fd-4d23-8275-e73c4d33669e"},{"name":"Get user metadata","id":"8d551d6d-057d-4c34-8f42-b37d746d1d84","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/metadata/user/:id","description":"<blockquote>\n<p>Gets metadata for the specified user Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","metadata","user",":id"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"ad8c3793-8299-42d1-aa31-a7a3a7c08394","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"81bef9ed-459f-4372-b4af-45a2e4b0df39","description":{"content":"<p>ID of the user you would like see details for.</p>\n","type":"text/plain"},"type":"any","value":"{{id}}","key":"id"}]}},"response":[],"_postman_id":"8d551d6d-057d-4c34-8f42-b37d746d1d84"},{"name":"Get user metasets","id":"6054c9cb-77ed-47fc-b00e-b72f941b29d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/user/metasets?profileEnabled={{1}}","description":"<blockquote>\n<p>Gets the metasets for users.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","user","metasets"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Whether you need the metasets for the user profile.</p>\n","type":"text/plain"},"key":"profileEnabled","value":"{{1}}"}],"variable":[{"id":"de09c4af-f605-4ac0-8b9e-02faef337459","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"6054c9cb-77ed-47fc-b00e-b72f941b29d8"},{"name":"Save metadata","id":"b9e0c587-2cb5-48f5-af24-d6c34add55a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/saveMetadata","description":"<blockquote>\n<p>Inserts metadata for the given assetGuid. See here for more details: <a href=\"https://apidocs.brandworkz.com/#inserting-asset-metadata\">https://apidocs.brandworkz.com/#inserting-asset-metadata</a></p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>assetGuid</strong> (string): The asset GUID.</p>\n</li>\n<li><p>assetTitle (string): The asset title.</p>\n</li>\n<li><p>assetVersion (integer): The asset version.</p>\n</li>\n<li><p>assetStatus (integer): The asset status. It can be one of the following:<br />0: Hidden, only sysadmin can view.<br />1: Published<br />2: View only, no download.</p>\n</li>\n<li><p>assetExpiryDate (string): The asset expiry date in the format yyyy/MM/dd.</p>\n</li>\n<li><p>assetPublishDate (string): The asset publish date in the format yyyy/MM/dd.</p>\n</li>\n<li><p>languageCode (string): The language code.</p>\n</li>\n<li><p>metasetRef (string): The metaset system reference.</p>\n</li>\n<li><p>metadata (object): The metadata JSON value.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","saveMetadata"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"38b565aa-7790-47a5-b843-727e44e5af23","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"b9e0c587-2cb5-48f5-af24-d6c34add55a9"},{"name":"getAssetMetadata","id":"d83b32e5-b5a5-43a9-994c-6f47fd5d0ba5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"*/*"}],"url":"https://api.brandworkz.com/v1.6/:clientId/getAssetMetadata?assetIDs={{assetIDs}}&shortcutIDs={{shortcutIDs}}&type={{tags,technical}}","description":"<blockquote>\n<p>This endpoint is deprecated, and will not be supported in future releases. Please use /metadata/asset instead.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","getAssetMetadata"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The asset IDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"assetIDs","value":"{{assetIDs}}"},{"description":{"content":"<p>The shortcut IDs you wish to get metadata for</p>\n","type":"text/plain"},"key":"shortcutIDs","value":"{{shortcutIDs}}"},{"description":{"content":"<p>The types of metadata that are required</p>\n","type":"text/plain"},"key":"type","value":"{{tags,technical}}"}],"variable":[{"id":"8d0f0ac3-6da1-47fb-8634-e7db5d8d76ae","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"d83b32e5-b5a5-43a9-994c-6f47fd5d0ba5"}],"id":"55625ec8-9c70-4e87-9fb4-40ccc234e152","description":"<p>Services for retrieving asset and user metadata.</p>\n","_postman_id":"55625ec8-9c70-4e87-9fb4-40ccc234e152"},{"name":"Navigation","item":[{"name":"Create a Masthead","id":"b5d30669-8a58-4764-b264-35ba856c940d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead","description":"<blockquote>\n<p>Creates a masthead.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>mastheadName</strong> (string): The masthead name.</p>\n</li>\n<li><p>isDefault (integer)</p>\n</li>\n<li><p>metadata (object)</p>\n</li>\n<li><p>metadataId (string)</p>\n</li>\n<li><p>widgetType (string)</p>\n</li>\n<li><p>description (string): The masthead description.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"efebd829-0b1f-4984-9b69-586b5792b494","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"b5d30669-8a58-4764-b264-35ba856c940d"},{"name":"Create a Masthead to category assignment","id":"ca411c97-b768-4c1f-8ad2-9b4194368812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead/assignment","description":"<blockquote>\n<p>Creates a masthead to category assignment.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>categoryMastheadGuid (string): The category masthead GUID.</p>\n</li>\n<li><p>categoryGuid (string): The category GUID.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead","assignment"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"87091066-5148-478b-a4e5-5bfbcb290290","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"ca411c97-b768-4c1f-8ad2-9b4194368812"},{"name":"Delete Masthead","id":"049cc1ab-3f02-416b-8ffc-403f4f27ed10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead/:mastheadGuid","description":"<blockquote>\n<p>Deletes a masthead by the specified GUID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead",":mastheadGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"972ee8d3-e509-4fb6-be6e-3fbfa2cdff23","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"91489a36-a778-49e8-8890-34884fd674ba","description":{"content":"<p>The masthead GUID to delete.</p>\n","type":"text/plain"},"type":"any","value":"{{mastheadGuid}}","key":"mastheadGuid"}]}},"response":[],"_postman_id":"049cc1ab-3f02-416b-8ffc-403f4f27ed10"},{"name":"Get Category masthead","id":"2748edb0-250b-4d63-9055-953c39182f7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead/category/:categoryGuid","description":"<blockquote>\n<p>Retrieves a masthead for the specified category GUID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead","category",":categoryGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"25d52a1a-c444-4e4f-91f7-dc68496f7128","description":{"content":"<p>The category GUID to retrieve its associated masthead.</p>\n","type":"text/plain"},"type":"any","value":"{{categoryGuid}}","key":"categoryGuid"},{"id":"6f98f5b7-6bf0-452d-9baa-c0d601a3b9f7","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"2748edb0-250b-4d63-9055-953c39182f7b"},{"name":"Get album tree navigation","id":"7261b985-8b1c-4bfb-937d-2e9488ecf377","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/albumTreeNavigation?albumID={{0}}&format={{json}}","description":"<blockquote>\n<p>Gets the album tree navigation for the specified album Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","albumTreeNavigation"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>albumID</p>\n","type":"text/plain"},"key":"albumID","value":"{{0}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"78633af6-a081-479d-9a9f-5d5041a12f49","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"7261b985-8b1c-4bfb-937d-2e9488ecf377"},{"name":"Get breadcrum","id":"59cff85d-f5eb-443c-92cc-8cc1f8771381","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getBreadcrumb?categoryID={{categoryID}}&format={{json}}&integration={{0}}&integrationTemplate={{/integrations/breadcrumb}}&limit={{10}}","description":"<blockquote>\n<p>Gets the breadcrum for the specified category Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getBreadcrumb"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>categoryID</p>\n","type":"text/plain"},"key":"categoryID","value":"{{categoryID}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether this call is coming from an integration or not</p>\n","type":"text/plain"},"key":"integration","value":"{{0}}"},{"description":{"content":"<p>The template string to use for this integration</p>\n","type":"text/plain"},"key":"integrationTemplate","value":"{{/integrations/breadcrumb}}"},{"description":{"content":"<p>limit</p>\n","type":"text/plain"},"key":"limit","value":"{{10}}"}],"variable":[{"id":"99f8e483-5830-428a-88f0-ac4f09a3612a","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"59cff85d-f5eb-443c-92cc-8cc1f8771381"},{"name":"Get list of mastheads","id":"455d2ed9-2c69-4539-b4c2-a7215a9185a1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead","description":"<blockquote>\n<p>Gets the list of all mastheads.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"9178dd4c-6ce6-4396-ad66-97a728f7fb3e","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"455d2ed9-2c69-4539-b4c2-a7215a9185a1"},{"name":"Get masthead navigation","id":"2c9e1ad9-fbb1-43eb-bd30-a09c69b55f5e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/mastheadNavigation","description":"<blockquote>\n<p>Gets the navigation for the given categories.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","mastheadNavigation"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"eae71a42-7317-45fa-9c11-2ed262565f73","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"2c9e1ad9-fbb1-43eb-bd30-a09c69b55f5e"},{"name":"Get tree navigation","id":"d8d64b42-4c11-41a5-887e-45c04b3a2ab3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/treeNavigation?categoryID={{0}}&format={{json}}&rootID={{rootID}}&str={{str}}","description":"<blockquote>\n<p>Gets the tree navigation for the specified category Id from the root category Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","treeNavigation"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The selected category Id inside the tree.</p>\n","type":"text/plain"},"key":"categoryID","value":"{{0}}"},{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The root category Id to start building the tree from.</p>\n","type":"text/plain"},"key":"rootID","value":"{{rootID}}"},{"description":{"content":"<p>The search text to filter categories by name. When specified, only matching folder Ids will be returned.</p>\n","type":"text/plain"},"key":"str","value":"{{str}}"}],"variable":[{"id":"6164a124-030e-4ecf-8a7e-92e421ade28b","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"d8d64b42-4c11-41a5-887e-45c04b3a2ab3"},{"name":"Update Masthead assignment","id":"fcd87467-f0aa-4b46-b435-4fb55fd35254","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead/assignment/:mastheadGuid","description":"<blockquote>\n<p>Update a category masthead assignment with the specified GUIDs.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead","assignment",":mastheadGuid"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"198669f8-3812-4cee-9e76-498ee8493ea1","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"},{"id":"90b543f6-32ca-42da-9e05-c9691d432387","description":{"content":"<p>The masthead GUID to update.</p>\n","type":"text/plain"},"type":"any","value":"{{mastheadGuid}}","key":"mastheadGuid"}]}},"response":[],"_postman_id":"fcd87467-f0aa-4b46-b435-4fb55fd35254"},{"name":"Updates a Masthead","id":"cd0dafb1-7ee4-47ed-88d8-99577a256616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/cms/masthead","description":"<blockquote>\n<p>Updates a masthead.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>categories (array)</p>\n</li>\n<li><p>categoryMastheadGuid (string)</p>\n</li>\n<li><p>dateModified (string)</p>\n</li>\n<li><p>description (string)</p>\n</li>\n<li><p>isDefault (integer)</p>\n</li>\n<li><p>mastheadName (string)</p>\n</li>\n<li><p>metadata (object)</p>\n</li>\n<li><p>metadataId (string)</p>\n</li>\n<li><p>version (integer)</p>\n</li>\n<li><p>widgetInstanceGuid (string)</p>\n</li>\n<li><p>widgetType (string)</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","cms","masthead"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"68e7e585-83e0-45a0-a9c8-f620f1f34f24","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"cd0dafb1-7ee4-47ed-88d8-99577a256616"}],"id":"8cd4dd30-87e3-4c3a-99ef-8dba7e29c9e8","description":"<p>Services for retrieving information about navigation around a site (menus/breadcrumb).</p>\n","_postman_id":"8cd4dd30-87e3-4c3a-99ef-8dba7e29c9e8"},{"name":"Search","item":[{"name":"Create saved search","id":"b8038587-54e9-41a5-ba8c-b014ac81094c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/createSavedSearch?format={{json}}&groupID={{0}}&searchCriteria={{U2hhcmU}}&searchName={{U2hhcmU}}","description":"<blockquote>\n<p>Creates a saved search entry.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","createSavedSearch"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The numeric ID of the group associated with users who search this.</p>\n","type":"text/plain"},"key":"groupID","value":"{{0}}"},{"description":{"content":"<p>The Base64 encoded search criteria that you wish to use. The default value is the Base64 encoding of a typical criteria</p>\n","type":"text/plain"},"key":"searchCriteria","value":"{{U2hhcmU}}"},{"description":{"content":"<p>The Base64 encoded search name that you wish to use. The default value is the Base64 encoding of \"Share\"</p>\n","type":"text/plain"},"key":"searchName","value":"{{U2hhcmU}}"}],"variable":[{"id":"b0f243c5-df04-4ea3-a549-e74ea4287771","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"b8038587-54e9-41a5-ba8c-b014ac81094c"},{"name":"Delete saved search","id":"4917ec78-367f-478d-9eb9-c18fc793d211","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/deleteSavedSearches?format={{json}}&searchID={{-1}}","description":"<blockquote>\n<p>Deletes the specified saved search entry Id.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","deleteSavedSearches"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The specific search ID to be deleted</p>\n","type":"text/plain"},"key":"searchID","value":"{{-1}}"}],"variable":[{"id":"72c2a86b-c638-4d36-a90f-db024ba0bc68","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"4917ec78-367f-478d-9eb9-c18fc793d211"},{"name":"Get saved searches","id":"ee554a6c-9cc3-450c-8ce2-f9f1684fb13c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/getSavedSearches?format={{json}}&limit={{6}}&name={{name}}","description":"<blockquote>\n<p>Lists the saved search entries.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","getSavedSearches"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The maximum number saved searches to return.</p>\n","type":"text/plain"},"key":"limit","value":"{{6}}"},{"description":{"content":"<p>The search name of the saved search to retrieve.</p>\n","type":"text/plain"},"key":"name","value":"{{name}}"}],"variable":[{"id":"598939b6-c127-4ae8-92d2-317e58fe2dd1","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"ee554a6c-9cc3-450c-8ce2-f9f1684fb13c"},{"name":"Get search definition","id":"fdfaf62c-77af-4c8d-8e36-d2d02ce87ce0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:clientId/search/definition","description":"<blockquote>\n<p>Gets the search configuration to be used for searchkit.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","search","definition"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"6c0b9878-cf91-40d0-86b3-99e9ac8c760b","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"fdfaf62c-77af-4c8d-8e36-d2d02ce87ce0"},{"name":"Search","id":"f4c22c87-80a5-4bcb-a9ec-3e08496232de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:clientId/search?assetType={{assetType}}&collapse={{true}}&createdByUserId={{createdByUserId}}","description":"<blockquote>\n<p>Use this to post any valid Elastic Search query against the search index. The current user's permissions will be added to the searchQuery. Note that to use this effectively you will need to understand the schema/mapping of the search index, please contact Brandworkz for further details on this. If you just need to do a simple keyword search then use 'simpleSearch' instead.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":clientId","search"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Pass one or more asset types to limit the result down on these.<br />Case sensitive.<br />Can be: Image, Document, Video, Audio, 3D, Font, Folder, Webpage, Workflow, Editable template, User artwork, Other</p>\n","type":"text/plain"},"key":"assetType","value":"{{assetType}}"},{"description":{"content":"<p>Collapse folders or not.</p>\n","type":"text/plain"},"key":"collapse","value":"{{true}}"},{"description":{"content":"<p>If you pass in the UserGuid for a brandworkz user - or multiple Guids in a comma-separated list - then only assets they have created/uploaded will get returned.</p>\n","type":"text/plain"},"key":"createdByUserId","value":"{{createdByUserId}}"}],"variable":[{"id":"58cdfe62-0775-4a64-8dcd-9cfd43e7516a","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{clientId}}","key":"clientId"}]}},"response":[],"_postman_id":"f4c22c87-80a5-4bcb-a9ec-3e08496232de"},{"name":"Simple search","id":"c15d41fd-ab1c-42fe-9404-948fa11ddb96","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/simpleSearch?assetType={{assetType}}&categoryGUID={{categoryGUID}}&category_ID={{category_ID}}&fileType={{fileType}}&from={{0}}&parentCategoryGUID={{parentCategoryGUID}}&parentCategory_ID={{parentCategory_ID}}&searchterm={{searchterm}}&size={{50}}&sourceFields={{sourceFields}}","description":"<blockquote>\n<p>Returns search results for the given parameters.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","simpleSearch"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Pass one or more asset types<br /> (comma-separated) to <br />limit the result down on these.<br /> Note, case sensitive. <br />Can be: Image, Video, Audio, <br />Document, Folder, Webpage, <br />Editable template, User artwork</p>\n","type":"text/plain"},"key":"assetType","value":"{{assetType}}"},{"description":{"content":"<p>Pass the categoryGUID, and the <br />search results will be limited to only <br />returning descendants of that folder <br />(children, grand-children, etc). <br />See also parentCategoryGUID</p>\n","type":"text/plain"},"key":"categoryGUID","value":"{{categoryGUID}}"},{"description":{"content":"<p>Do not use, will be retired <br />in a future version. <br />Instead use categoryGUID</p>\n","type":"text/plain"},"key":"category_ID","value":"{{category_ID}}"},{"description":{"content":"<p>Pass one or more filetypes/suffixes <br />in a comma-separated list to add this <br />as a filter. e.g. doc,docx,etc. <br />If you specify this then assetType <br />will be ignored</p>\n","type":"text/plain"},"key":"fileType","value":"{{fileType}}"},{"description":{"content":"<p>The start-point for the results. <br />Note that this is zero-based, <br />i.e. the first result is at position 0. <br />Use in conjunction with size parameter<br /> to implement paging. <br />E.g. if size is set to 50 - i.e. <br />50 results per page - then for <br />page 2 you would pass a From value of 50</p>\n","type":"text/plain"},"key":"from","value":"{{0}}"},{"description":{"content":"<p>Pass a categoryGUID, and the <br />search results will be limited to only <br />returning the immediate children <br />(assets/folders) for that categoryGUID. <br />Useful for generating folder-browse <br />functionality. If this is specified then <br />the results will be sorted with <br />folders/pages first, then assets, <br />both alphabetically</p>\n","type":"text/plain"},"key":"parentCategoryGUID","value":"{{parentCategoryGUID}}"},{"description":{"content":"<p>Do not use, will be retired <br />in a future version. <br />Instead use parentCategoryGUID</p>\n","type":"text/plain"},"key":"parentCategory_ID","value":"{{parentCategory_ID}}"},{"description":{"content":"<p>The search term/phrase you want to search for.<br /> If left empty then all results will be returned</p>\n","type":"text/plain"},"key":"searchterm","value":"{{searchterm}}"},{"description":{"content":"<p>Max results to return. Defaults to 50. Max is 500</p>\n","type":"text/plain"},"key":"size","value":"{{50}}"},{"description":{"content":"<p>Comma-separated list. <br />The fields you want to <br />return from ElasticSearch. <br />The built-in fields for <br />assets are:  <br />title,breadcrumb,<br />dateCreated,dateModified,<br />objectURL,repositoryFilename,<br />repositoryFolder,thumbnailUrlCdn,<br />GUID,versionGUID,<br />createdBy,createdByUserID,<br />createdByUser_ID,categoryID,<br />assetType, assetTypeDetailed,<br />assetTypeTranslated,<br />assetTypeDetailedTranslated,<br />icon_class,serialNumber,<br />serialNumberText,version,<br />original_fileName,<br />md5,<br />mimetype,<br />fileSizeOnDiskBytes,<br />fileSizeOnDiskKB,orientation,<br />documentFulltext,pixelWidth,pixelHeight,<br />dpi,pagecount,duration,<br />assetExpiry,fileType,fileTypeTab,<br />fileType_friendly,<br />fileTypeHierarchical,colourSpace,<br />folder,<br />printRenditionOriginal,printRenditionFPO<br />To see custom fields temporarily<br /> execute a search with this argument <br />set to \"all\" to get all fields<br /> back including custom fields, <br />but do NOT do this in production<br /> as e.g. the documentFulltext field <br />and some custom fields can contain<br /> a LOT of data so will massively <br />bloat the json return from <br />the search server</p>\n","type":"text/plain"},"key":"sourceFields","value":"{{sourceFields}}"}],"variable":[{"id":"0a12dc1f-032d-4fb5-9a30-06df30a19f17","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"c15d41fd-ab1c-42fe-9404-948fa11ddb96"}],"id":"d3f3d748-b291-4e88-bdea-27c24966c4fa","description":"<p>Services for performing searches on the site.</p>\n","_postman_id":"d3f3d748-b291-4e88-bdea-27c24966c4fa"},{"name":"Users","item":[{"name":"Create group","id":"4fe41c33-119d-4738-a518-5c91a220532d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/createGroup?format={{json}}&isSystemGroup={{0}}&name={{name}}&powerGroup={{0}}&userID={{userID}}","description":"<blockquote>\n<p>Creates a group with the given information.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","createGroup"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>isSystemGroup</p>\n","type":"text/plain"},"key":"isSystemGroup","value":"{{0}}"},{"description":{"content":"<p>Base 64 encoded string that you wish to use for the group name</p>\n","type":"text/plain"},"key":"name","value":"{{name}}"},{"description":{"content":"<p>powerGroup</p>\n","type":"text/plain"},"key":"powerGroup","value":"{{0}}"},{"description":{"content":"<p>The user ID you wish to set for this session</p>\n","type":"text/plain"},"key":"userID","value":"{{userID}}"}],"variable":[{"id":"8a20dcd2-da70-4ecd-8746-e3b694dd6a05","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"4fe41c33-119d-4738-a518-5c91a220532d"},{"name":"Create user","id":"7311aef6-75bb-475f-8eaa-d4bc8c59572d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/users/create","description":"<blockquote>\n<p>As a user admin or sysadmin, it creates a new user.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>login</strong> (string): The user login name</p>\n</li>\n<li><p>password (string): The user password</p>\n</li>\n<li><p><strong>firstName</strong> (string): The user first name</p>\n</li>\n<li><p><strong>lastName</strong> (string): The user last name</p>\n</li>\n<li><p><strong>email</strong> (string): The user email</p>\n</li>\n<li><p>loginType (integer): The user login type (1=internal/2=SSO)</p>\n</li>\n<li><p>preferredLanguage (string): The user preferred language</p>\n</li>\n<li><p>company (string): The company</p>\n</li>\n<li><p>address1 (string): The address line 1</p>\n</li>\n<li><p>address2 (string): The address line 2</p>\n</li>\n<li><p>townOrCity (string): The town or city</p>\n</li>\n<li><p>postOrZipCode (string): The post or zip code</p>\n</li>\n<li><p>country (integer): The country Id</p>\n</li>\n<li><p>department (integer): The department Id</p>\n</li>\n<li><p>region (integer): The region Id</p>\n</li>\n<li><p>telephone (string): The telephone</p>\n</li>\n<li><p>enabled (integer): Whether the user is enabled or not</p>\n</li>\n<li><p>expiryDate (string): The user expiry date</p>\n</li>\n<li><p>groups (array): The user groups they belong to</p>\n</li>\n<li><p>superadmin (integer): Whether the user is superadmin</p>\n</li>\n<li><p>accessSysadmin (integer): Whether the user is sysadmin</p>\n</li>\n<li><p>accessUsers (integer): Whether the user can manage other users</p>\n</li>\n<li><p>accessGroups (integer): Whether the user can manage groups</p>\n</li>\n<li><p>accessMetadata (integer): Whether the user can create metadata sets</p>\n</li>\n<li><p>accessTransforms (integer): Whether the user can manage transforms</p>\n</li>\n<li><p>accessViewDisabledArtworks (integer): Whether the user can view disabled assets and hidden folders</p>\n</li>\n<li><p>accessWorkflow (integer): Whether the user has access to workflows</p>\n</li>\n<li><p>translationAdmin (integer): Whether the user can manage translations</p>\n</li>\n<li><p>accessReports (integer): Whether the user has access to reporting dashboards</p>\n</li>\n<li><p>layoutMetasets (integer): Whether the user can manage layout metasets</p>\n</li>\n<li><p>accessMultilogin (integer): Whether the user can use the multilogin feature</p>\n</li>\n<li><p>accessAlbums (integer): Whether the user can access albums</p>\n</li>\n<li><p>accessAdobecc (integer): Whether the user can use the CI Hub Integration</p>\n</li>\n<li><p>accessInsights (integer): Whether the user can access insights</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","create"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"a3abaa42-9bf8-4ba8-bfb8-f031bb21ab80","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"7311aef6-75bb-475f-8eaa-d4bc8c59572d"},{"name":"Delete user","id":"585dce3e-e730-4a41-8944-1aeeefe1a1f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/:userId/delete","description":"<blockquote>\n<p>As a user admin or sysadmin, it deletes the specified user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users",":userId","delete"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"2661c097-24ca-4a8c-b601-878c6f52b0ed","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"71866357-45e4-4357-9b5e-10446a8d2022","description":{"content":"<p>User ID to delete.</p>\n","type":"text/plain"},"type":"any","value":"{{userId}}","key":"userId"}]}},"response":[],"_postman_id":"585dce3e-e730-4a41-8944-1aeeefe1a1f5"},{"name":"Get asset alerting status","id":"db5c0031-141f-4ec6-8116-4356519ca905","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/assetAlertingStatus","description":"<blockquote>\n<p>As an authenticated user, it returns the asset alerting status. If the Asset Alerting feature is not enabled on the site or the authenticated user is not a member of any asset alerting groups, the flag 'showOnMyProfile' will be returned as 0.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","assetAlertingStatus"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"f944d8ee-cc25-4229-8ed8-e26cae38a1a8","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"db5c0031-141f-4ec6-8116-4356519ca905"},{"name":"Get contact administrator form","id":"3d175675-f49b-44d6-8ca1-0193a5894fa8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/contact","description":"<blockquote>\n<p>As an authenticated user, it returns the contact administrator form.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","contact"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"0060b349-fcd2-42b5-b9d2-3200ac86591e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"3d175675-f49b-44d6-8ca1-0193a5894fa8"},{"name":"Get my messages","id":"f3f78971-d4bb-43a9-8b5c-94e302142887","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/messages?limit={{10}}&offset={{0}}","description":"<blockquote>\n<p>As an authenticated user, it returns my messages sent to the administrator ordered by most recent sent date.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","messages"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Number of messages to retrieve. Used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"{{10}}"},{"description":{"content":"<p>Number of messages to skip, starting with 0. Used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"{{0}}"}],"variable":[{"id":"185b2c78-4400-488b-9aea-5136e6731893","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"f3f78971-d4bb-43a9-8b5c-94e302142887"},{"name":"Get my profile","id":"e8bf1333-088f-4019-bb17-029f9d00cb1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/profile","description":"<blockquote>\n<p>As an authenticated user, it returns my profile details.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","profile"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"282d7105-3047-4251-9c91-bbaa48e2a6a5","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"e8bf1333-088f-4019-bb17-029f9d00cb1e"},{"name":"Get my profile edit form","id":"5d375ccd-ca09-4820-a722-4251cb41850c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/edit","description":"<blockquote>\n<p>As an authenticated user, it retrieves the 'my profile' edit form.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","edit"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"23b0eeef-6c29-4ad3-b0be-d8b249860fec","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"5d375ccd-ca09-4820-a722-4251cb41850c"},{"name":"Get my stuff","id":"de8babb2-5f81-4213-8cf9-af47183a18f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"text/html"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/myStuff?albumsLimit={{999}}&assetsLimit={{6}}&format={{json}}&savedSearchesLimit={{999}}&w2pArtworksLimit={{6}}","description":"<blockquote>\n<p>It returns the latest actions for the My stuff page and the logged-in user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","myStuff"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The maximum number of albums to return.</p>\n","type":"text/plain"},"key":"albumsLimit","value":"{{999}}"},{"description":{"content":"<p>The maximum number of assets to return.</p>\n","type":"text/plain"},"key":"assetsLimit","value":"{{6}}"},{"description":{"content":"<p>The format you wish the data to be returned.</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The maximum number of saved searches to return.</p>\n","type":"text/plain"},"key":"savedSearchesLimit","value":"{{999}}"},{"description":{"content":"<p>The maximum number of W2P artworks to return.</p>\n","type":"text/plain"},"key":"w2pArtworksLimit","value":"{{6}}"}],"variable":[{"id":"29483b50-48bd-4f9e-83b6-46d01c9fed1e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"de8babb2-5f81-4213-8cf9-af47183a18f5"},{"name":"Get profile and registration form","id":"3368dc38-8e71-4194-a0f4-b3b59a4a47f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/profile/settings","description":"<blockquote>\n<p>As a sysadmin, it returns the user profile and registration form.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","profile","settings"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"0a6e5204-1f3a-46c3-b4ce-cd3720bed70e","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"3368dc38-8e71-4194-a0f4-b3b59a4a47f6"},{"name":"Get user asset alerting status","id":"8890600b-fcc8-4472-b064-da648e0d19e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/:userId/assetAlertingStatus","description":"<blockquote>\n<p>As a sysadmin, it returns the user asset alerting status for the specified user ID. If the Asset Alerting feature is not enabled on the site or the specified user is not a member of any asset alerting groups, the flag 'showOnMyProfile' will be returned as 0.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users",":userId","assetAlertingStatus"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"8a5443c0-c064-4f3c-85f7-6b31d1c20105","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"b9c9538b-30af-4db2-96ec-64927ad5b16e","description":{"content":"<p>User ID to see their asset alerting status.</p>\n","type":"text/plain"},"type":"any","value":"{{userId}}","key":"userId"}]}},"response":[],"_postman_id":"8890600b-fcc8-4472-b064-da648e0d19e1"},{"name":"Get user create form","id":"b251a289-4018-4dca-ab5e-702941d53707","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/create","description":"<blockquote>\n<p>As a user admin or sysadmin, it retrieves the 'user create' form for a new user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","create"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"5ad67264-33ec-4f8f-a249-7a7bfa912de0","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"b251a289-4018-4dca-ab5e-702941d53707"},{"name":"Get user edit form","id":"d4effe75-6db0-42f2-8779-698db665f7f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/:userId/edit","description":"<blockquote>\n<p>As a user admin or sysadmin, it retrieves the 'user edit' form for the specified user ID.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users",":userId","edit"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"7069adda-620e-4739-9257-4162a56ed30a","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"8509c42f-d138-48dc-b646-f7b33d781d63","description":{"content":"<p>ID of the user to retrieve the edit form for.</p>\n","type":"text/plain"},"type":"any","value":"{{userId}}","key":"userId"}]}},"response":[],"_postman_id":"d4effe75-6db0-42f2-8779-698db665f7f6"},{"name":"Get user group list","id":"f9a06406-498b-4436-81c1-d68fa31cac02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/groups?limit={{50}}&searchText={{searchText}}","description":"<blockquote>\n<p>As a user admin or sysadmin, it performs a search for groups with the given criteria. For user admins, only groups the authenticated user is a member of will be returned.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","groups"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The number of results that you wish to be returned for each of users and groups</p>\n","type":"text/plain"},"key":"limit","value":"{{50}}"},{"description":{"content":"<p>A search string to match against group names. This value must be base64 encoded.</p>\n","type":"text/plain"},"key":"searchText","value":"{{searchText}}"}],"variable":[{"id":"562c54e3-a638-4741-8676-54019b44d581","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"f9a06406-498b-4436-81c1-d68fa31cac02"},{"name":"Get user list","id":"12e6417e-1ec0-4a4d-8559-8710208d63e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users","description":"<blockquote>\n<p>As a user admin or sysadmin, it returns a list of users.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"fa9d8ae8-3a60-42b8-a6cb-67da9f8ba301","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"12e6417e-1ec0-4a4d-8559-8710208d63e5"},{"name":"Get user menu","id":"5f112140-2a28-4263-8873-76f846fddf65","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/menu","description":"<blockquote>\n<p>As an authenticated user, it returns the user menu with all available options.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","menu"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"2fdad165-7d09-43b2-9058-91b4aa8ddf0b","description":{"content":"<p>Your client Id.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"5f112140-2a28-4263-8873-76f846fddf65"},{"name":"Get user messages","id":"96a1cc12-5215-45cd-ba26-1843c0e3f96e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/:userId/messages?limit={{10}}&offset={{0}}","description":"<blockquote>\n<p>As a user admin or sysadmin, it returns a list of the specified user messages sent to the administrator ordered by most recent sent date.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users",":userId","messages"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Number of messages to retrieve. Used for pagination.</p>\n","type":"text/plain"},"key":"limit","value":"{{10}}"},{"description":{"content":"<p>Number of messages to skip, starting with 0. Used for pagination.</p>\n","type":"text/plain"},"key":"offset","value":"{{0}}"}],"variable":[{"id":"1cc07851-2c98-4bcf-8f74-7a7d4fdd406c","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"bea6e8b8-a52e-41ae-9080-9137c52df8e9","description":{"content":"<p>User ID to see their messages.</p>\n","type":"text/plain"},"type":"any","value":"{{userId}}","key":"userId"}]}},"response":[],"_postman_id":"96a1cc12-5215-45cd-ba26-1843c0e3f96e"},{"name":"Login","id":"cf9b59d4-3d5d-44b2-b93a-31f87ece2a08","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/login?format={{json}}&isIntegration={{1}}&userLogin={{userLogin}}&userPassword={{userPassword}}","description":"<blockquote>\n<p>Logs in (i.e. creates a session) for the user information passed in. This will also set the default language for the user.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","login"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>Whether the user is logging in with an integration (as opposed to the Brandworkz instance)</p>\n","type":"text/plain"},"key":"isIntegration","value":"{{1}}"},{"description":{"content":"<p>The user's login name</p>\n","type":"text/plain"},"key":"userLogin","value":"{{userLogin}}"},{"description":{"content":"<p>The user's password</p>\n","type":"text/plain"},"key":"userPassword","value":"{{userPassword}}"}],"variable":[{"id":"6a63262a-0883-45fa-84b0-7311bb659b00","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"cf9b59d4-3d5d-44b2-b93a-31f87ece2a08"},{"name":"Logout","id":"7764794f-c01f-4a6e-b856-f0d2c9985b90","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/logout?format={{json}}","description":"<blockquote>\n<p>Clears the session.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","logout"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"}],"variable":[{"id":"51f92365-52a5-4411-9f12-a195695d97b8","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"7764794f-c01f-4a6e-b856-f0d2c9985b90"},{"name":"Modify asset alerting status","id":"2c4fa337-c8b4-4eac-bd69-b8be6d75c35f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/assetAlertingStatus?status={{status}}","description":"<blockquote>\n<p>As an authenticated user, it modifies the asset alerting status. If the Asset Alerting feature is not enabled on the site or the authenticated user is not a member of any asset alerting groups, an error will be thrown.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","assetAlertingStatus"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>Asset alerting opt: 1 = Opt out | 0 = Opt in</p>\n","type":"text/plain"},"key":"status","value":"{{status}}"}],"variable":[{"id":"5d2b2834-180e-4394-a38e-d9cc5b5d01d4","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"2c4fa337-c8b4-4eac-bd69-b8be6d75c35f"},{"name":"Save profile and registration settings","id":"a9ba7fd7-7e31-481d-9d64-c4024353c70a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/users/profile/settings","description":"<blockquote>\n<p>As a sysadmin, it saves the user profile and registration settings.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>registeredUsers (boolean): Show profile page to database/registered users</p>\n</li>\n<li><p>ssoUsers (boolean): Show profile page to SSO users</p>\n</li>\n<li><p>assetAlerting (boolean): Show asset alerting options</p>\n</li>\n<li><p>termsAndConditions (boolean): Show terms and conditions</p>\n</li>\n<li><p>mandatoryTsAndCs (boolean): User must accept terms and conditions on login</p>\n</li>\n<li><p>adminForm (boolean): Show contact administrator form</p>\n</li>\n<li><p>tcName (string): Terms and conditions label</p>\n</li>\n<li><p>tcHtmlContent (string): Terms and conditions HTML content</p>\n</li>\n<li><p>tcCheckboxLabel (string): Label for terms and conditions checkbox</p>\n</li>\n<li><p>lstRequests (array): List of reasons/topics for the contact administrator form</p>\n</li>\n<li><p>userMetasets (array): List of user metaset system references</p>\n</li>\n<li><p>registrationMetaset (string): Custom fields on the registration form</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","profile","settings"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"b2b0d28c-4b2f-470b-855c-59a21c639f31","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"a9ba7fd7-7e31-481d-9d64-c4024353c70a"},{"name":"Send email to administrator","id":"1c84d92e-9a72-450c-8643-95175439c8fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/users/contact","description":"<blockquote>\n<p>As an authenticated user, it sends an email to the configured administrator email.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>requestId</strong> (integer): The request Id selected from the list. Check endpoint Get contact administrator form.</p>\n</li>\n<li><p><strong>message</strong> (string): The email message.</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","contact"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"b1f106ff-7d9e-427a-b1b2-82883903f521","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"1c84d92e-9a72-450c-8643-95175439c8fb"},{"name":"Update current language code","id":"1c19c30b-5f34-4ef0-a0cb-50c0c19334ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/setCurrentLanguageCode?format={{json}}&langCode={{uk_en-gb}}","description":"<blockquote>\n<p>Updates the current user's locale to the value given.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","setCurrentLanguageCode"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The format you wish the data to be returned</p>\n","type":"text/plain"},"key":"format","value":"{{json}}"},{"description":{"content":"<p>The Language code that you wish to set for the current user in the format \"uk_en-gb\"</p>\n","type":"text/plain"},"key":"langCode","value":"{{uk_en-gb}}"}],"variable":[{"id":"adec392f-cc99-4532-8c29-ba91d411bf0d","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"1c19c30b-5f34-4ef0-a0cb-50c0c19334ee"},{"name":"Update my profile","id":"c0a92ffa-e599-4b61-80b6-92dee625e8eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/users/edit","description":"<blockquote>\n<p>As an authenticated user, it updates my profile.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p>address1 (string): The address line 1</p>\n</li>\n<li><p>address2 (string): The address line 2</p>\n</li>\n<li><p>company (string): The company</p>\n</li>\n<li><p>country (integer): The country Id</p>\n</li>\n<li><p>department (integer): The department Id</p>\n</li>\n<li><p>email (string): The user email</p>\n</li>\n<li><p>firstName (string): The user first name</p>\n</li>\n<li><p>lastName (string): The user last name</p>\n</li>\n<li><p>login (string): The user login name</p>\n</li>\n<li><p>newPassword (string): The user new password</p>\n</li>\n<li><p>password (string): The user current password</p>\n</li>\n<li><p>postOrZipCode (string): The post or zip code</p>\n</li>\n<li><p>preferredLanguage (string): The user preferred language</p>\n</li>\n<li><p>region (integer): The region Id</p>\n</li>\n<li><p>telephone (string): The telephone</p>\n</li>\n<li><p>townOrCity (string): The town or city</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","edit"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"a689c788-fbd7-4ea9-865b-612e1c433b50","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"c0a92ffa-e599-4b61-80b6-92dee625e8eb"},{"name":"Update user details","id":"afb9d510-8e2f-4020-86a4-6216f66a0d66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"body":{"mode":"raw","raw":"{}"},"url":"https://api.brandworkz.com/v1.6/:client_id/users/:userId/edit","description":"<blockquote>\n<p>As a user admin or sysadmin, it updates the specified user details.</p>\n</blockquote>\n<p><strong>BODY PARAMETERS</strong></p>\n<ul>\n<li><p><strong>login</strong> (string): The user login name</p>\n</li>\n<li><p>password (string): The user password</p>\n</li>\n<li><p><strong>firstName</strong> (string): The user first name</p>\n</li>\n<li><p><strong>lastName</strong> (string): The user last name</p>\n</li>\n<li><p><strong>email</strong> (string): The user email</p>\n</li>\n<li><p>preferredLanguage (string): The user preferred language</p>\n</li>\n<li><p>company (string): The company</p>\n</li>\n<li><p>address1 (string): The address line 1</p>\n</li>\n<li><p>address2 (string): The address line 2</p>\n</li>\n<li><p>townOrCity (string): The town or city</p>\n</li>\n<li><p>postOrZipCode (string): The post or zip code</p>\n</li>\n<li><p>country (integer): The country Id</p>\n</li>\n<li><p>department (integer): The department Id</p>\n</li>\n<li><p>region (integer): The region Id</p>\n</li>\n<li><p>telephone (string): The telephone</p>\n</li>\n<li><p>enabled (integer): Whether the user is enabled or not</p>\n</li>\n<li><p>expiryDate (string): The user expiry date</p>\n</li>\n<li><p>groups (array): The user groups they belong to</p>\n</li>\n<li><p>superadmin (integer): Whether the user is superadmin</p>\n</li>\n<li><p>accessSysadmin (integer): Whether the user is sysadmin</p>\n</li>\n<li><p>accessUsers (integer): Whether the user can manage other users</p>\n</li>\n<li><p>accessGroups (integer): Whether the user can manage groups</p>\n</li>\n<li><p>accessMetadata (integer): Whether the user can create metadata sets</p>\n</li>\n<li><p>accessTransforms (integer): Whether the user can manage transforms</p>\n</li>\n<li><p>accessViewDisabledArtworks (integer): Whether the user can view disabled assets and hidden folders</p>\n</li>\n<li><p>accessWorkflow (integer): Whether the user has access to workflows</p>\n</li>\n<li><p>translationAdmin (integer): Whether the user can manage translations</p>\n</li>\n<li><p>accessReports (integer): Whether the user has access to reporting dashboards</p>\n</li>\n<li><p>layoutMetasets (integer): Whether the user can manage layout metasets</p>\n</li>\n<li><p>accessMultilogin (integer): Whether the user can use the multilogin feature</p>\n</li>\n<li><p>accessAlbums (integer): Whether the user can access albums</p>\n</li>\n<li><p>accessAdobecc (integer): Whether the user can use the CI Hub Integration</p>\n</li>\n<li><p>accessInsights (integer): Whether the user can access insights</p>\n</li>\n</ul>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users",":userId","edit"],"host":["api","brandworkz","com"],"query":[],"variable":[{"id":"682afdfe-ebbe-4afd-84e6-a19a5c4a7a9c","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"},{"id":"b18f87ec-2a61-4dc4-99bf-27326227c104","description":{"content":"<p>User ID to modify.</p>\n","type":"text/plain"},"type":"any","value":"{{userId}}","key":"userId"}]}},"response":[],"_postman_id":"afb9d510-8e2f-4020-86a4-6216f66a0d66"},{"name":"Validate password","id":"3e3512be-e503-429d-8b69-f597a3f81d6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Accept","value":"application/json;charset=UTF-8"}],"url":"https://api.brandworkz.com/v1.6/:client_id/users/password/validate?firstName={{firstName}}&lastName={{lastName}}&loginName={{loginName}}&password={{password}}&userId={{0}}","description":"<blockquote>\n<p>Takes the given information and returns any errors associated with the password being invalid.</p>\n</blockquote>\n","urlObject":{"protocol":"https","path":["v1.6",":client_id","users","password","validate"],"host":["api","brandworkz","com"],"query":[{"description":{"content":"<p>The first name for the user you wish to check the password for.</p>\n","type":"text/plain"},"key":"firstName","value":"{{firstName}}"},{"description":{"content":"<p>The last name for the user you wish to check the password for.</p>\n","type":"text/plain"},"key":"lastName","value":"{{lastName}}"},{"description":{"content":"<p>The login name for the user you wish to check the password for.</p>\n","type":"text/plain"},"key":"loginName","value":"{{loginName}}"},{"description":{"content":"<p>The password you wish to check.</p>\n","type":"text/plain"},"key":"password","value":"{{password}}"},{"description":{"content":"<p>The user ID if you have a user to check the password for.</p>\n","type":"text/plain"},"key":"userId","value":"{{0}}"}],"variable":[{"id":"6023c3b4-2452-44ec-aaf3-b8cd9ba7ea55","description":{"content":"<p>Your client ID.</p>\n","type":"text/plain"},"type":"any","value":"{{client_id}}","key":"client_id"}]}},"response":[],"_postman_id":"3e3512be-e503-429d-8b69-f597a3f81d6c"}],"id":"20f9fd5b-0ae6-4a73-9f63-1d0ae11142e8","description":"<p>Services for managing users and groups.</p>\n","_postman_id":"20f9fd5b-0ae6-4a73-9f63-1d0ae11142e8"}]}