{"info":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","description":"<html><head></head><body><p>Mediaflow API is a REST API based on JSON data over HTTPS. All calls and answers must be in UTF-8. Calls with POST or PUT must have the HTTP header <code>Content-Type: application/json</code>. Note that the numeric ID can also be negative. All calls require authentication with OAuth2, where an access token can be sent with either in the URL as the query parameter <code>access_token</code>, e.g</p>\n<blockquote>\n<p>GET /1/folders?access_token=igfragagsnckagnkgadciangdsnjg HTTP/1.1<br>Host: api.mediaflow.com </p>\n</blockquote>\n<p>or the access token can be sent via the HTTP header <code>Authorization</code></p>\n<blockquote>\n<p>GET /1/folders HTTP/1.1<br>Host: api.mediaflow.com<br>Authorization: Bearer igfragagsnckagnkgadciangdsnjg </p>\n</blockquote>\n<p>The format and length of an access token may vary.</p>\n<p>All answers from the API on GET calls comes with a JSON array as the root object, even if the answer contains only one object. The exception is for errors (when an error object is returned), and for OAuth2 authentication. If it is an empty result, an empty array is returned <code>[]</code>.</p>\n<h2 id=\"fields\">Fields</h2>\n<p>By default, only a few selected fields are included for each endpoint. To specify exactly which fields you are interested in, send a comma-separated list with the query string parameter <code>fields</code>. The field names must be written in lower case letters.</p>\n<blockquote>\n<p>For example:<br><a href=\"https://api.mediaflow.com/1/folder?fields=id,name,parents\">https://api.mediaflow.com/1/folder?fields=id,name,parents</a> </p>\n</blockquote>\n<p>By entering <code>fields=any</code> you get all available fields. Avoid using <code>fields=any</code> in production (only include the fields you are interested in). Note that new fields may be added to the API over time. The field <code>id</code> is always returned and cannot be deselected.</p>\n<h2 id=\"page-division\">Page division</h2>\n<p>By default, all entries are returned. If you want to limit the number of entries, you can use the query string parameters <code>page</code> and <code>per_page</code>.</p>\n<p>If the <code>page</code> parameter is used, the total number of entries in the HTTP header <code>X-Total-Count</code> is returned.</p>\n<blockquote>\n<p>For example:<br><a href=\"https://api.mediaflow.com/1/folder?page=1&amp;per_page=20\">https://api.mediaflow.com/1/folder?page=1&amp;per_page=20</a> </p>\n</blockquote>\n<h2 id=\"cors\">CORS</h2>\n<p>The API fully supports CORS calls via the HTTP header <code>Access-Control-Allow-Origin</code>, even for OPTIONS calls. If necessary, all specified HTTP headers are also listed via <code>Access-Control-Expose-Headers</code>.</p>\n<p>OPTIONS calls always return status <code>204 No Content</code> and no content.</p>\n<h2 id=\"jsonp\">JSONP</h2>\n<p>For all GET calls, it is also possible to get JSONP-adapted answers. Note that with JSONP, errors are always returned with HTTP status <code>code 200</code>, and the correct error code is included in the error object. Enter the function name with the query string parameter <code>callback</code>.</p>\n<blockquote>\n<p>For example:<br><a href=\"https://api.mediaflow.com/1/folder?callback=parseResponse\">https://api.mediaflow.com/1/folder?callback=parseResponse</a> </p>\n</blockquote>\n<h2 id=\"error-handling\">Error handling</h2>\n<p>All errors are returned with a corresponding HTTP status code and a JSON error object.</p>\n<blockquote>\n<p>For example:<br>400 Bad Request<br>{<br>\"status\": 400,<br>\"error\": \"Invalid JSON data\"<br>} </p>\n</blockquote>\n<h2 id=\"authentication\">Authentication</h2>\n<h3 id=\"oauth2\">OAuth2</h3>\n<p>Authentication uses OAuth2 to the URL <code>https://api.mediaflow.com/1/oauth2/token</code> where the following <code>grant_type</code> is supported:</p>\n<blockquote>\n<p>grant_type=password<br>grant_type=refresh_token<br>grant_type=authorization_code </p>\n</blockquote>\n<p>All authentication calls require that you enter a <code>client_id</code> and a <code>client_secret</code>.</p>\n<h4 id=\"grant-type-refresh_token\">Grant Type: refresh_token</h4>\n<p>If you have previously received a <code>refresh_token</code> it can be used to get a new valid <code>access_token</code> even if the previous <code>access_token</code> has expired.</p>\n<p><em>This is also used in the case of having and</em> <em><strong>integration key</strong></em> <em>or</em> <em><strong>server key</strong></em>__<em>, those keys are refresh tokens and should be used by the same flow.</em></p>\n<p>Parameters for calls</p>\n<blockquote>\n<p><code>grant_type</code> \"refresh_token\"<br><code>client_id</code> identifier for the API client<br><code>client_secret</code> Password for the API client<br><code>refresh_token</code> a refresh token from a previous call </p>\n</blockquote>\n<p>Upon successful authentication, the response contains:</p>\n<blockquote>\n<p><code>access_token</code> access_token used for all API calls<br><code>token_type</code> always \"Bearer\"<br><code>expires_in</code> how long, in seconds, the specified access_token is valid </p>\n</blockquote>\n<p>The value of <code>expires_in</code> depends on the <code>client_id</code> used for the authentication.</p>\n<h4 id=\"grant-type-authorization_code\">Grant Type: authorization_code</h4>\n<p>To authenticate with <code>grant_type=authorization_code</code> always use the URL <code>https://login.mediaflowpro.com/authorize</code> with the following query string parameters:</p>\n<blockquote>\n<p><code>response_type</code> should always be \"code\"<br><code>client_id</code> identifier for the API client<br><code>redirect_uri</code> which URL the user should be sent to after authentication<br><code>state</code> optional data sent back after the call (not mandatory) </p>\n</blockquote>\n<p>Thereafter another call is made to <code>https://api.mediaflow.com/1/oauth2/token</code> with <code>grant_type=authorization_code</code>.</p>\n<h4 id=\"grant-type-password\">Grant Type: password</h4>\n<p>Note that not all <code>_client_id_</code> allow login with the <code>_grant_type=password_</code> <em>type.</em></p>\n<p>Enter the following parameters for calls</p>\n<blockquote>\n<p><code>grant_type</code> should always be <code>password</code><br><code>client_id</code> identifier for the API client<br><code>client_secret</code> password for the API client<br><code>username</code> username<br><code>password</code> password<br><code>state</code> optional data sent back after the call (optional) </p>\n</blockquote>\n<p>Upon successful authentication, the response contains:</p>\n<blockquote>\n<p><code>access_token</code> access_token used for all API calls<br><code>refresh_token</code> token to renew an access_token when it expires<br><code>token_type</code> always \"Bearer\"<br><code>expires_in</code> how long, in seconds, the specified access_token is valid<br><code>state</code> the same data as in the call. Only if it was indicated at the call </p>\n</blockquote>\n<p>The value of <code>expires_in</code>, and whether a <code>refresh_token</code> is returned or not, depends on the <code>client_id</code> used for the authentication.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"23189985","collectionId":"cfe90008-575a-4f16-9220-6cc2f6a878ec","publishedId":"2s8YzL4meR","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2022-12-02T11:02:05.000Z"},"item":[{"name":"Folder","item":[{"name":"Get folder tree","id":"b4bf7e07-3847-4894-b152-f00da7b44c07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/foldertree?archived=true&private=true&shared=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","foldertree"],"host":["api","mediaflow","com"],"query":[{"description":{"content":"<p>Include archvied folders (default: false)</p>\n","type":"text/plain"},"key":"archived","value":"true"},{"description":{"content":"<p>Include private folders (default: false)</p>\n","type":"text/plain"},"key":"private","value":"true"},{"description":{"content":"<p>Include global/shared/common [gemnsamma] folders (default: false)</p>\n","type":"text/plain"},"key":"shared","value":"true"}],"variable":[]}},"response":[],"_postman_id":"b4bf7e07-3847-4894-b152-f00da7b44c07"},{"name":"Get root folders","id":"174f0ed2-3a0b-4df1-aaaf-fcddccb5f5d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/folder?archived=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder"],"host":["api","mediaflow","com"],"query":[{"description":{"content":"<p>Include archvied folders (default: false)</p>\n","type":"text/plain"},"key":"archived","value":"true"}],"variable":[]}},"response":[{"id":"3ee4e757-2922-4cec-b8e4-88546134cc4f","name":"folder","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://api.mediaflow.com/1/folder?archived=true","protocol":"https","host":["api","mediaflow","com"],"path":["1","folder"],"query":[{"key":"archived","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"private"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"id\": 12345,\n        \"name\": \"Images\",\n        \"parent\": null,\n        \"hasChildren\": true,\n        \"archived\": false\n    },\n    {\n        \"id\": 12347,\n        \"name\": \"Brand book\",\n        \"parent\": null,\n        \"hasChildren\": true,\n        \"archived\": false\n    },\n    {\n        \"id\": 12348,\n        \"name\": \"Documents\",\n        \"parent\": null,\n        \"hasChildren\": true,\n        \"archived\": false\n    }\n]"}],"_postman_id":"174f0ed2-3a0b-4df1-aaaf-fcddccb5f5d9"},{"name":"Get single folder","id":"87c8e26a-af3c-46e0-8a63-6c62d2568404","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/folder/{{id}}?archived=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{id}}"],"host":["api","mediaflow","com"],"query":[{"description":{"content":"<p>Include archvied folders (default: false)</p>\n","type":"text/plain"},"key":"archived","value":"true"}],"variable":[]}},"response":[],"_postman_id":"87c8e26a-af3c-46e0-8a63-6c62d2568404"},{"name":"Get subfolder","id":"db7cd21e-f84f-4a71-8e8d-4c1f3ed78232","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/folder/{{id}}/children?archived=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{id}}","children"],"host":["api","mediaflow","com"],"query":[{"description":{"content":"<p>Include archvied folders (default: false)</p>\n","type":"text/plain"},"key":"archived","value":"true"}],"variable":[]}},"response":[],"_postman_id":"db7cd21e-f84f-4a71-8e8d-4c1f3ed78232"},{"name":"Get parent folders","id":"7000ab4a-fe5e-4ad0-a92a-5c94f896c2b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/folder/{{id}}/parents?archived=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{id}}","parents"],"host":["api","mediaflow","com"],"query":[{"description":{"content":"<p>Include archvied folders (default: false)</p>\n","type":"text/plain"},"key":"archived","value":"true"}],"variable":[]}},"response":[],"_postman_id":"7000ab4a-fe5e-4ad0-a92a-5c94f896c2b9"},{"name":"Get all folders containing a specific file","id":"0871180e-43d9-475e-97a1-1b3542cefbfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}/folder?archived=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","folder"],"host":["api","mediaflow","com"],"query":[{"description":{"content":"<p>Include archvied folders (default: false)</p>\n","type":"text/plain"},"key":"archived","value":"true"}],"variable":[]}},"response":[],"_postman_id":"0871180e-43d9-475e-97a1-1b3542cefbfd"},{"name":"Create new folder","id":"021ae68b-c582-45a1-8cd9-901f5ead13ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"\",\r\n    \"viewLayout\": \"DEFAULT\"\r\n}"},"url":"https://api.mediaflow.com/1/folder/{{parent}}","description":"<p><code>parent</code> anger under vilken mapp som den nya mappen ska skapas. Det kan vara antingen ett numeriskt id eller ett av följande värden:</p>\n<p><code>root</code> - skapa en ny rotmapp</p>\n<p><code>home</code> - skapa en mapp under \"Mina filer\"</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{parent}}"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[{"id":"a20669ee-ce9a-412d-81ce-2dd1951ffdc2","name":"folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Personalbilder\",\r\n    \"viewLayout\": \"DEFAULT\"\r\n}"},"url":"https://api.mediaflow.com/1/folder/12345"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 201,\n    \"id\": 12345,\n    \"name\": \"Images\"\n}"}],"_postman_id":"021ae68b-c582-45a1-8cd9-901f5ead13ac"},{"name":"Edit folders properties","id":"190e4fd0-9364-48b6-a4e5-585e2577c1d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"\",\r\n    \"viewLayout\": \"DEFAULT\",\r\n    \"includeSubFiles\": true,\r\n    \"sortOrder\": 0,\r\n    \"keepExistingKeywords\": true,\r\n    \"keywords\": [\r\n        {\r\n            \"keyword\": \"\",\r\n            \"includesSubFolders\": false,\r\n            \"applyExisting\": false\r\n        }\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"https://api.mediaflow.com/1/folder/{{id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{id}}"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[{"id":"bfcc702c-6b2f-4df0-b897-523458763e78","name":"folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Personabilder\",\r\n    \"viewLayout\": \"DEFAULT\",\r\n    \"includeSubFiles\": true,\r\n    \"sortOrder\": 5,\r\n    \"keepExistingKeywords\": true,\r\n    \"keywords\": [\r\n        {\r\n            \"keyword\": \"personal\",\r\n            \"includesSubFolders\": true,\r\n            \"applyExisting\": true\r\n        }\r\n    ]\r\n}"},"url":"https://api.mediaflow.com/1/folder/12345"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Cache-Control","value":"no-store"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n    \"status\": 200,\n    \"id\": 12345\n}"}],"_postman_id":"190e4fd0-9364-48b6-a4e5-585e2577c1d2"},{"name":"Folder checkpermission","id":"816dedc5-e4ba-4100-9a92-de7ced766d7b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/folder/{{id}}/checkpermission","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{id}}","checkpermission"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"816dedc5-e4ba-4100-9a92-de7ced766d7b"}],"id":"30c73a5e-40cc-4006-b8a8-1d7f5eae0933","_postman_id":"30c73a5e-40cc-4006-b8a8-1d7f5eae0933","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"Files","item":[{"name":"file id","id":"6d40cba4-9a78-41f3-9990-a724896b54d4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}?fields=any","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}"],"host":["api","mediaflow","com"],"query":[{"key":"fields","value":"any"}],"variable":[]}},"response":[],"_postman_id":"6d40cba4-9a78-41f3-9990-a724896b54d4"},{"name":"file stream","id":"c01e551e-ea50-4f93-b6e9-b57324ce91f5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}?fields=any","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}"],"host":["api","mediaflow","com"],"query":[{"key":"fields","value":"any"}],"variable":[]}},"response":[],"_postman_id":"c01e551e-ea50-4f93-b6e9-b57324ce91f5"},{"name":"file latest","id":"0b685d11-d3df-4fa7-90dd-9ad44a58fb87","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/latest?output=count&type=any&processed=true&filter&jsondata=object&days=0&locale=en-us","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","latest"],"host":["api","mediaflow","com"],"query":[{"key":"output","value":"count"},{"key":"type","value":"any"},{"key":"processed","value":"true"},{"key":"filter","value":null},{"key":"jsondata","value":"object"},{"key":"days","value":"0"},{"key":"locale","value":"en-us"}],"variable":[]}},"response":[],"_postman_id":"0b685d11-d3df-4fa7-90dd-9ad44a58fb87"},{"name":"folder files","id":"2a00c5a8-dd5c-49cf-8620-d60b020e384c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/folder/{{id}}/files?output=count&type=any&processed=true&filter&jsondata=object&days=0&locale=en-us","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","folder","{{id}}","files"],"host":["api","mediaflow","com"],"query":[{"key":"output","value":"count"},{"key":"type","value":"any"},{"key":"processed","value":"true"},{"key":"filter","value":null},{"key":"jsondata","value":"object"},{"key":"days","value":"0"},{"key":"locale","value":"en-us"}],"variable":[]}},"response":[],"_postman_id":"2a00c5a8-dd5c-49cf-8620-d60b020e384c"},{"name":"file mostdownloaded","id":"2c7de6ee-bea1-49a5-97bd-848200bc06b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/mostdownloaded?output=count&type=any&processed=true&filter&jsondata=object&days=0&locale=en-us","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","mostdownloaded"],"host":["api","mediaflow","com"],"query":[{"key":"output","value":"count"},{"key":"type","value":"any"},{"key":"processed","value":"true"},{"key":"filter","value":null},{"key":"jsondata","value":"object"},{"key":"days","value":"0"},{"key":"locale","value":"en-us"}],"variable":[]}},"response":[],"_postman_id":"2c7de6ee-bea1-49a5-97bd-848200bc06b1"},{"name":"file download","id":"70373a89-a28b-450e-861d-6f76434643c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}/download?inline=true&id=12345&ids=12345,123785","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","download"],"host":["api","mediaflow","com"],"query":[{"key":"inline","value":"true"},{"key":"id","value":"12345"},{"key":"ids","value":"12345,123785"}],"variable":[]}},"response":[],"_postman_id":"70373a89-a28b-450e-861d-6f76434643c9"},{"name":"file multiple download","id":"3b3f749f-1046-4325-aeda-38d8b72fdcb2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/multiple/download?inline=true&id=12345&ids=12345,123785","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","multiple","download"],"host":["api","mediaflow","com"],"query":[{"key":"inline","value":"true"},{"key":"id","value":"12345"},{"key":"ids","value":"12345,123785"}],"variable":[]}},"response":[],"_postman_id":"3b3f749f-1046-4325-aeda-38d8b72fdcb2"},{"name":"file version","id":"f9a73a81-f475-4838-baf1-6c050021963d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}/version","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","version"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9a73a81-f475-4838-baf1-6c050021963d"},{"name":"file usage","id":"cd58c170-303f-49dc-8236-42ada05de9b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}/usage","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","usage"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"cd58c170-303f-49dc-8236-42ada05de9b8"},{"name":"file page","id":"7c6915aa-eb4b-46b0-b4c4-c4b8d4fe6863","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}/page","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","page"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"7c6915aa-eb4b-46b0-b4c4-c4b8d4fe6863"},{"name":"file checkpermission","id":"e6bb0eda-408d-4fdb-8ced-a03add36aa0f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/{{id}}/checkpermission?id=1","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","checkpermission"],"host":["api","mediaflow","com"],"query":[{"key":"id","value":"1"}],"variable":[]}},"response":[],"_postman_id":"e6bb0eda-408d-4fdb-8ced-a03add36aa0f"},{"name":"file keyword","id":"409813a5-3ba2-4acf-8765-e04393e547d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/file/keyword","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","keyword"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"409813a5-3ba2-4acf-8765-e04393e547d0"},{"name":"file","id":"a5953c12-af8d-4071-b008-85e3e7668ece","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"filename\": \"\",\r\n    \"filesize\": 1,\r\n    \"versions\": 1,\r\n    \"toFolder\": 1,\r\n    \"versionsId\": 0,\r\n    \"versionComment\": \"\"\r\n}"},"url":"https://api.mediaflow.com/1/file","description":"<p>Request used to get upload URL for a file.  </p>\n<p>Need to do a request with a body that contains the properties specified where <code>toFolder</code> is the objectId of the folder where the upload should end up.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5953c12-af8d-4071-b008-85e3e7668ece"},{"name":"file usage","id":"340776bf-5815-4324-b7e4-ab3171ac9c2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"id\": 1\r\n}"},"url":"https://api.mediaflow.com/1/file/{{id}}/usage","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","{{id}}","usage"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"340776bf-5815-4324-b7e4-ab3171ac9c2e"},{"name":"file","id":"e482ebff-e8af-4c62-b63f-e978f65df68f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"\",\r\n    \"filename\": \"\",\r\n    \"description\": \"\",\r\n    \"instructions\": \"\",\r\n    \"photografer\": \"\",\r\n    \"rating\": 5,\r\n    \"marking\": 6,\r\n    \"addKeywords\": [],\r\n    \"setKeywords\": [],\r\n    \"removeKeywords\": [],\r\n    \"addFolders\": [],\r\n    \"removeFolders\": []\r\n}"},"url":"https://api.mediaflow.com/1/file","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e482ebff-e8af-4c62-b63f-e978f65df68f"},{"name":"file","id":"ab33192f-6034-4ace-9941-8b12acaba768","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://api.mediaflow.com/1/file","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ab33192f-6034-4ace-9941-8b12acaba768"},{"name":"file search","id":"7f8f2904-7e06-438c-b7e9-c44ec02ad9a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[]},"url":"https://api.mediaflow.com/1/file/search","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","file","search"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[{"id":"c3074c6f-37ba-4e76-850a-c118879919aa","name":"file search","originalRequest":{"method":"POST","header":[],"url":"https://api.mediaflow.com/1/file/search"},"_postman_previewlanguage":"json","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","description":"","type":"text"}],"cookie":[],"responseTime":null,"body":"{\n    \"filters\": [\n        {\n            \"type\": \"fileextension\",\n            \"operator\": \"is\",\n            \"value\": \"jpg\"\n        },\n        {\n            \"type\": \"width\",\n            \"operator\": \"greaterthan\",\n            \"value\": \"100\"            \n        }\n        ,\n        {\n            \"type\": \"height\",\n            \"operator\": \"lesserthan\",\n            \"value\": \"2000\"            \n        },\n        {\n            \"type\": \"gdprstatus\",\n            \"operator\": \"is\",\n            \"value\": \"OK\"\n        }\n    ]\n}"}],"_postman_id":"7f8f2904-7e06-438c-b7e9-c44ec02ad9a8"},{"name":"file search","id":"d59b99ed-4fd9-456a-a344-4d107d87c523","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/search/file?query={textQuery}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","search","file"],"host":["api","mediaflow","com"],"query":[{"key":"query","value":"{textQuery}"}],"variable":[]}},"response":[],"_postman_id":"d59b99ed-4fd9-456a-a344-4d107d87c523"},{"name":"keyword","id":"c018b858-bc86-4104-b3f5-f87cb0308c66","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/keyword?query&deep=true","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","keyword"],"host":["api","mediaflow","com"],"query":[{"key":"query","value":null},{"key":"deep","value":"true"}],"variable":[]}},"response":[],"_postman_id":"c018b858-bc86-4104-b3f5-f87cb0308c66"}],"id":"637b775e-fc0b-4775-9812-2df6fd340bbe","_postman_id":"637b775e-fc0b-4775-9812-2df6fd340bbe","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"Selection","item":[{"name":"selection","id":"66eb451a-d19e-4ef6-aeaa-b162eddff473","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/selection","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","selection"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"66eb451a-d19e-4ef6-aeaa-b162eddff473"},{"name":"selection files","id":"3e227ea5-5005-4fcc-8a1a-3dd81b72397c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/selection/{{id}}/files?output=count&type=any&processed=true&filter&jsondata=object&days=0&locale=en-us","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","selection","{{id}}","files"],"host":["api","mediaflow","com"],"query":[{"key":"output","value":"count"},{"key":"type","value":"any"},{"key":"processed","value":"true"},{"key":"filter","value":null},{"key":"jsondata","value":"object"},{"key":"days","value":"0"},{"key":"locale","value":"en-us"}],"variable":[]}},"response":[],"_postman_id":"3e227ea5-5005-4fcc-8a1a-3dd81b72397c"},{"name":"selection","id":"c7afcc74-4692-4c5a-835f-8ccc06c38728","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"files\": []\r\n}"},"url":"https://api.mediaflow.com/1/selection","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","selection"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"c7afcc74-4692-4c5a-835f-8ccc06c38728"},{"name":"selection files","id":"ae60b0d4-acc3-49da-b719-ac440ab9a781","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"","options":{"raw":{"language":"json"}}},"url":"https://api.mediaflow.com/1/selection/id/file","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","selection","id","file"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae60b0d4-acc3-49da-b719-ac440ab9a781"}],"id":"2a8c829d-e086-41b7-88a9-8c4afd090491","_postman_id":"2a8c829d-e086-41b7-88a9-8c4afd090491","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"Users / groups","item":[{"name":"user","id":"0b94e168-219e-44d8-a289-94d848856308","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/user","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","user"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"0b94e168-219e-44d8-a289-94d848856308"},{"name":"user group","id":"86dd74f1-53f9-47f0-83c7-9708ef2ff5f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/user/id/group","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","user","id","group"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"86dd74f1-53f9-47f0-83c7-9708ef2ff5f2"},{"name":"user checkpermission","id":"61353a90-8487-4af2-9b44-cfbb6520500c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/user/id/checkpermission","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","user","id","checkpermission"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"61353a90-8487-4af2-9b44-cfbb6520500c"},{"name":"group user","id":"8c837ee7-eecc-4bed-a0cf-ad6e369e181e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/group/id/user","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","group","id","user"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"8c837ee7-eecc-4bed-a0cf-ad6e369e181e"},{"name":"group","id":"d3f2b09e-a8b2-4db2-9e0a-3b1a85083f16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/group","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","group"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"d3f2b09e-a8b2-4db2-9e0a-3b1a85083f16"},{"name":"me","id":"6b40dc63-e8b5-43e6-a1b8-28152a424485","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/me","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","me"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6b40dc63-e8b5-43e6-a1b8-28152a424485"},{"name":"me permissions","id":"035c3ce4-6756-4402-a817-dbb43210c241","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/me/permissions","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","me","permissions"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"035c3ce4-6756-4402-a817-dbb43210c241"},{"name":"marks","id":"e707ce8f-a720-4f2a-99c4-152a0a8732a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/marks","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","marks"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"e707ce8f-a720-4f2a-99c4-152a0a8732a7"}],"id":"976e1477-0e1d-431d-839d-562b467fa23c","_postman_id":"976e1477-0e1d-431d-839d-562b467fa23c","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"Webshare","item":[{"name":"webshare","id":"a178e3fc-e1e7-4cee-bff5-bd4c38d309a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/webshare","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","webshare"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"a178e3fc-e1e7-4cee-bff5-bd4c38d309a7"},{"name":"webshare file","id":"ad14f825-e4b0-4a6b-9a8b-4c6383e4b8a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/webshare/id/file?output=count&type=any&processed=true&filter&jsondata=object&days=0&locale=en-us","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","webshare","id","file"],"host":["api","mediaflow","com"],"query":[{"key":"output","value":"count"},{"key":"type","value":"any"},{"key":"processed","value":"true"},{"key":"filter","value":null},{"key":"jsondata","value":"object"},{"key":"days","value":"0"},{"key":"locale","value":"en-us"}],"variable":[]}},"response":[],"_postman_id":"ad14f825-e4b0-4a6b-9a8b-4c6383e4b8a0"}],"id":"e2d157c3-0dd8-4064-81a9-4071273ea847","_postman_id":"e2d157c3-0dd8-4064-81a9-4071273ea847","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"Format","item":[{"name":"format","id":"df778ed4-3b7c-4d27-aae1-0d9268db594a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/format","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","format"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"df778ed4-3b7c-4d27-aae1-0d9268db594a"}],"id":"c26111b9-14a4-486e-913c-701b56546e59","_postman_id":"c26111b9-14a4-486e-913c-701b56546e59","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"Field","item":[{"name":"field","id":"6f0ec571-a500-4663-bd5e-636ec245c14d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/field","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","field"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"6f0ec571-a500-4663-bd5e-636ec245c14d"},{"name":"field id","id":"9b7e780e-2fea-415c-be91-ef5ff94117fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/field/{{id}}","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","field","{{id}}"],"host":["api","mediaflow","com"],"query":[],"variable":[]}},"response":[],"_postman_id":"9b7e780e-2fea-415c-be91-ef5ff94117fb"}],"id":"b69c4beb-f053-4022-965f-a49cf4e5aedb","_postman_id":"b69c4beb-f053-4022-965f-a49cf4e5aedb","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}},{"name":"OAuth","item":[{"name":"token (refresh)","id":"220f76f4-9f35-4946-b84b-c267fcc73703","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://api.mediaflow.com/1/oauth2/token?refresh_token=<Server Key>&client_id=<client_id>&client_secret=<client_secret>&grant_type=refresh_token","description":"<p>Used to get <code>access_token</code> from a <code>refresh_token</code>.</p>\n<p><em>Note:</em> <code>_client_id_</code> <em>and</em> <code>_client_secret_</code> <em>you get from your contact at Mediaflow.</em></p>\n<h3 id=\"integration-keys\"><strong>Integration keys</strong></h3>\n<p>This is also used to get an <code>access_token</code> from a \"Server Key\", the server key is a <code>refresh_token</code> and should be used in the same type of request.</p>\n<h3 id=\"response\">Response</h3>\n<p>From this you get a response that contains the <code>access_token</code>, the <code>token_type</code> and the expiration time (<code>expires_in</code>)</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}},"urlObject":{"protocol":"https","path":["1","oauth2","token"],"host":["api","mediaflow","com"],"query":[{"key":"refresh_token","value":"<Server Key>"},{"key":"client_id","value":"<client_id>"},{"key":"client_secret","value":"<client_secret>"},{"key":"grant_type","value":"refresh_token"}],"variable":[]}},"response":[],"_postman_id":"220f76f4-9f35-4946-b84b-c267fcc73703"}],"id":"f478b783-b738-4967-9067-f36f41ada26e","_postman_id":"f478b783-b738-4967-9067-f36f41ada26e","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]},"isInherited":true,"source":{"_postman_id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","id":"cfe90008-575a-4f16-9220-6cc2f6a878ec","name":"Mediaflow 3.0 Customer API Docs","type":"collection"}}}],"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":"<token>"}]}},"event":[{"listen":"prerequest","script":{"id":"c8bbadfa-af76-471b-973d-a8851f17ffcc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"25721f6e-aae7-4c4e-9ab9-fc19b308240e","type":"text/javascript","exec":[""]}}]}