{"info":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","description":"<html><head></head><body><p>The Lumino API allows you to easily access data stored in Lumino, create new data or change it.</p>\n<h1 id=\"overview\">Overview</h1>\n<ul>\n<li>You need a valid API Key to access most of the functions. You can get it using the <code>/auth/login</code> endpoint with your normal credentials which will return your key.</li>\n<li>Alternatively you can use an API token which is created on your profile page.</li>\n<li>The Lumino API will only respond to secured communication done over HTTPS. HTTP requests will be sent a 301 redirect to corresponding HTTPS resources.</li>\n<li>Response to every request is sent in JSON format. In case the API request results in an error, it is represented by an <code>\"result\": \"failed\"</code> key in the JSON response, together with another key <code>\"error\"</code> that contains some details.</li>\n<li>If your request succeeds, you will find a key <code>\"result\": \"success\"</code> in the JSON response. In case you request returned some data, you will find it in a key <code>\"data\"</code>.</li>\n<li>The official REST API base URLs are:<ul>\n<li><a href=\"https://api.lumino.cloud/api\">https://api.lumino.cloud/api</a> for production</li>\n<li><a href=\"https://api-dev.lumino.cloud/api\">https://api-dev.lumino.cloud/api</a> for development</li>\n</ul>\n</li>\n</ul>\n<h1 id=\"authentication\">Authentication</h1>\n<p>The API Key needs to be submitted as part of every request in form of an <code>X-Access-Token</code> request header. The API Key tells the server who you are and what kind of access to the API you have. It also has a limited validity so make sure you login for every session or at least once every 24h.</p>\n<p>The API Token is valid forever until you delete it from your profile again. It must be submitted in form of an <code>X-API-Token</code> request header.</p>\n<h1 id=\"clients\">Clients</h1>\n<p>In case your account is member of more than one client, you also have to specify an <code>X-Request-Client</code> request header that specifies the Id of the desired client. Omitting this request header will serve information of your default client. To get a list of all your clients and Ids, use the <code>/auth/myclients</code> endpoint.</p>\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":"Clients","slug":"clients"}],"owner":"4554799","collectionId":"49874c54-d739-457a-8fb7-65d3a43e57c4","publishedId":"SzKbLFKN","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"0080ff"},"publishDate":"2023-10-29T09:41:13.000Z"},"item":[{"name":"Authentication","item":[{"name":"Login (with 2FA)","id":"6cde1f75-4dc2-4504-94f3-a08cd4ab5aff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"<email address>\",\n    \"password\": \"<password>\",\n    \"client\": \"<client id>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/login2fa","description":"<p>Login to the system using username and password. This will return only a success message but no token. Instead it will trigger an email to the account containing a 2FA Code that needs to be sent back using the \"Confirm 2FA\" endpoint below.</p>\n<p>This endpoint also has an optional \"client\" parameter that is strongly encouraged. Specifying a client will cause the token that will be returned by \"Confirm 2FA\" endpoint to be restricted to a single client. No other clients can be accessed using it. Only omit this parameter if you really need elevated access privileges across all clients. The user will be told about this in the 2FA email so can decide to give full access or not.</p>\n","urlObject":{"path":["auth","login2fa"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6cde1f75-4dc2-4504-94f3-a08cd4ab5aff"},{"name":"token","id":"9c744032-bd04-419c-ac4a-dc16e4257b09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"<email address>\",\n    \"password\": \"<password>\",\n    \"client\": \"<client id>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/login2fa","description":"<p>Login to the system using username and password. This will return only a success message but no token. Instead it will trigger an email to the account containing a 2FA Code that needs to be sent back using the \"Confirm 2FA\" endpoint below.</p>\n<p>This endpoint also has an optional \"client\" parameter that is strongly encouraged. Specifying a client will cause the token that will be returned by \"Confirm 2FA\" endpoint to be restricted to a single client. No other clients can be accessed using it. Only omit this parameter if you really need elevated access privileges across all clients. The user will be told about this in the 2FA email so can decide to give full access or not.</p>\n","urlObject":{"path":["auth","login2fa"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9c744032-bd04-419c-ac4a-dc16e4257b09"},{"name":"Confirm 2FA","id":"87d5512e-ddfa-4215-a7e7-0f513afbf437","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"<email address>\",\n    \"code\": \"<2fa code>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/confirm2fa","description":"<p>Use this endpoint to send back the 2FA code, the user received by mail. On successful verification, this will send back a token to use as authentication for all other endpoints.</p>\n","urlObject":{"path":["auth","confirm2fa"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"87d5512e-ddfa-4215-a7e7-0f513afbf437"},{"name":"Get current user info","id":"fc2df8a5-6f43-4e1e-830f-a907a65362fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/auth/me","description":"<p>Return information about current user</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["auth","me"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"55f60dac-af87-414b-beff-73fa2314a4d5","name":"Successful return of identity","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/auth/me"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"result\": \"success\",\n \"data\": {\n  \"_id\": \"5ce5441c2a4a19ed6ec1f0a9\",\n  \"name\": \"Username\",\n  \"client\": \"Companyname\",\n  \"clientId\": \"5d83ef7e43e6a1bbcc69793f\",\n  \"admin\": false,\n  \"superadmin\": false,\n  \"account\": \"user@example.com\",\n  \"permissions\": [\n   \"<string>\",\n   \"<string>\"\n  ]\n }\n}"}],"_postman_id":"fc2df8a5-6f43-4e1e-830f-a907a65362fb"},{"name":"Get my clients","id":"10019fa5-76d6-4ac3-8363-1a69062a51bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/auth/myclients","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["auth","myclients"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"10019fa5-76d6-4ac3-8363-1a69062a51bf"},{"name":"Register","id":"e5c72c93-a583-424e-b44a-05048906dc7e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"<email address>\",\n    \"password\": \"mypassword\",\n    \"name\": \"<full user name>\",\n    \"country\": \"<iso_3166-1 3 letter country code>\"\n    \"clientInvitationToken\": \"<optional client invitation token>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/register","description":"<p>This request will create a new user registration. The field account specified an email address and will be tested for email format. A confirmation email is sent to this address for confirmation before the account can be activated.\nThe field name should the the full name of the user.\nThe clientInvitationToken field is optional and is used for for adding a new user directly to an existing client instead of creating a new client for that user.</p>\n","urlObject":{"path":["auth","register"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e5c72c93-a583-424e-b44a-05048906dc7e"},{"name":"Confirm email","id":"4997a35f-7773-4fb1-a022-98ad1eb3e472","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/auth/confirmemail/:token","description":"<p>This request is used to confirm an email address. The token is contained in the email that is sent upon registration of a new user. In case the user was registered including a clientInvitationToken, the user is automatically approved and activated. Otherwise it will need to be approved by an administrator.</p>\n","urlObject":{"path":["auth","confirmemail",":token"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"string","value":"","key":"token"}]}},"response":[],"_postman_id":"4997a35f-7773-4fb1-a022-98ad1eb3e472"},{"name":"Forgot password","id":"5342fdeb-2b9f-4660-8b90-5b97166160fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"account\": \"mail@example.com\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/forgotpassword","description":"<p>If a user forgets his password, this api endpoint can be used to send an email to set a new password. Submit the email address and if the user is found in the database, an email is sent with a reset token.\nThis token can be used in the /auth/setnewpassword endpoint. If the user cannot be found in the database, a success message is also sent.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["auth","forgotpassword"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5342fdeb-2b9f-4660-8b90-5b97166160fa"},{"name":"Set new password","id":"e25fa239-584a-4d4e-a0f8-15c92316236c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"token\": \"<token>\",\n    \"password\": \"<new password>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/auth/setnewpassword","description":"<p>This endpoint can be used to set a new password for a user. Submit the token from the email sent by the /auth/forgotpassword endpoint together with a new password.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["auth","setnewpassword"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e25fa239-584a-4d4e-a0f8-15c92316236c"}],"id":"acad3e08-1301-47e6-84f0-5dba821aee87","_postman_id":"acad3e08-1301-47e6-84f0-5dba821aee87","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Items","item":[{"name":"Create item","id":"6cc23a7c-b257-42ed-9910-3cb6546c0b51","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"<string>","description":"<p>(Required) </p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"My item\",\n\t\"type\": \"Image\",\n    \"itemtemplate\": \"optional item template id\",\n\t\"folder\": \"parent folder Id or null\",\n\t\"public\": false,\n\t\"attributes\": {\n\t\t\"att1\": \"value\"\n\t},\n\t\"links\": [\n\t\t{ \"to\": \"item id\", \"usage\": \"type of usage\" }\n\t]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item","description":"<p>Create a new item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a6b8c3e7-ace1-4658-a4a1-78a6cfec9e19","name":"response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"<string>","description":"(Required) "}],"url":"{{baseUrl}}/item"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"result\": \"success\",\n \"data\": \"5cffa8fb46f6672257a156e9\"\n}"}],"_postman_id":"6cc23a7c-b257-42ed-9910-3cb6546c0b51"},{"name":"Update item","id":"711b7904-4187-49b6-b4d3-5773f675922a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"<string>","description":"<p>(Required) </p>\n"}],"url":"{{baseUrl}}/item","description":"<p>Update an item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7920075b-fbec-45d5-90e0-475a91ed005c","name":"response","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"<string>","description":"(Required) "}],"url":"{{baseUrl}}/item"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"711b7904-4187-49b6-b4d3-5773f675922a"},{"name":"Delete item","id":"c7f1b149-33b6-46da-9c48-e55a1d4ea8a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"<string>","description":"<p>(Required) </p>\n"}],"url":"{{baseUrl}}/item","description":"<p>Delete an item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a02b8506-f991-42d4-adca-cfdc43bebb25","name":"response","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"<string>","description":"(Required) "}],"url":"{{baseUrl}}/item"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"c7f1b149-33b6-46da-9c48-e55a1d4ea8a3"},{"name":"Get Public Item","id":"81064140-73b2-4cac-b36a-6c8a4976a28f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/public/:id?returnClonedFrom=true","urlObject":{"path":["item","public",":id"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>If set to true, the response will include a clonedFrom field with the ID and name of the original item.</p>\n","type":"text/plain"},"key":"returnClonedFrom","value":"true"}],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"500546f9-ebaa-4f54-8ff9-5c3c6cc021ac","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/public/:id","host":["{{baseUrl}}"],"path":["item","public",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"81064140-73b2-4cac-b36a-6c8a4976a28f"},{"name":"Public Download","id":"493d23b6-e431-4349-9754-4da4363810d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/item/publicdownload/:id","urlObject":{"path":["item","publicdownload",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"d905d7a7-5183-45e4-bb09-7131f74cdd36","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"4bbeeb35-ffa9-480d-bb0b-7e090c285edb","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/publicdownload/:id","host":["{{baseUrl}}"],"path":["item","publicdownload",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"493d23b6-e431-4349-9754-4da4363810d3"},{"name":"Get items list for syncing","id":"b15bf349-e98d-406a-bfb6-b3591df49316","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/synclist/:date?pageSize=50&nextItem=abcdef123456","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","synclist",":date"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Sets how many items should be included per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Optional. A cursor to fetch the next page. It's the nextItem property of the previous response.</p>\n","type":"text/plain"},"key":"nextItem","value":"abcdef123456"}],"variable":[{"type":"any","value":null,"key":"date"}]}},"response":[{"id":"60ef7057-dd57-4ed5-850e-63859062a8cd","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/item/synclist"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b15bf349-e98d-406a-bfb6-b3591df49316"},{"name":"Get single item","id":"09ce5b64-021b-49e8-bddb-5971808de934","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/:id?returnClonedFrom=true","description":"<p>Get a specific item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item",":id"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>If set to true, the response will include a clonedFrom field with the ID and name of the original item.</p>\n","type":"text/plain"},"key":"returnClonedFrom","value":"true"}],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"77b53c1b-18b4-4dcf-8e2e-d7c0e1eff2c4","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/:id","host":["{{baseUrl}}"],"path":["item",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"09ce5b64-021b-49e8-bddb-5971808de934"},{"name":"Get single public item recursive","id":"f4b393a4-cecc-4273-8944-d1742935a5a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/item/publicrecursive/:id","description":"<p>Get a specific item</p>\n","urlObject":{"path":["item","publicrecursive",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"7d25c76f-ff6b-4ea0-ac74-68f9b183cb69","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"63b10c1e-7ee6-42aa-bf48-9ffe17026d14","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/publicrecursive/:id","host":["{{baseUrl}}"],"path":["item","publicrecursive",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"f4b393a4-cecc-4273-8944-d1742935a5a5"},{"name":"Get single item thumbnail","id":"9298fec9-cf60-45ec-a51f-d51c683a2127","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/thumbnail/:size/:id","description":"<p>Get a thumbnail for an item. Possible sizes are 32, 64 and 128.</p>\n<p>The image will be returned as data URL not as download</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","thumbnail",":size",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"5c7f0f74-abc9-44fe-b33a-26e542d110d7","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<integer>","key":"size"},{"id":"7a5fed7e-b40c-407b-b192-59f0f9dbc7fa","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"c40acb6a-6cda-4992-b04f-0cde7933bd59","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/thumbnail/:size/:id","host":["{{baseUrl}}"],"path":["item","thumbnail",":size",":id"],"variable":[{"key":"size"},{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"9298fec9-cf60-45ec-a51f-d51c683a2127"},{"name":"Upload single item thumbnail","id":"697d28cd-9b45-47f6-be99-a0abffc8276d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/thumbnail/:size/:id","description":"<p>Get a thumbnail for an item. Possible sizes are 32, 64 and 128.</p>\n<p>The image will be returned as data URL not as download</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","thumbnail",":size",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<integer>","key":"size"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"a00464a4-8d80-4aa6-8752-b05d9c276319","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/thumbnail/:size/:id","host":["{{baseUrl}}"],"path":["item","thumbnail",":size",":id"],"variable":[{"key":"size"},{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"697d28cd-9b45-47f6-be99-a0abffc8276d"},{"name":"Get single public item thumbnail","id":"3132594e-edb5-4af2-b9c5-0a18bd75e780","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/publicthumbnail/:size/:id","description":"<p>Get a thumbnail for an item. Possible sizes are 32, 64 and 128.</p>\n<p>The image will be returned as data URL not as download</p>\n","urlObject":{"path":["item","publicthumbnail",":size",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<size>","key":"size"},{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"38e09d46-9b5a-4902-b74c-3f14c4ee721b","name":"Untitled Example","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/thumbnail/:size/:id","host":["{{baseUrl}}"],"path":["item","thumbnail",":size",":id"],"variable":[{"key":"size"},{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3132594e-edb5-4af2-b9c5-0a18bd75e780"},{"name":"Get single item aggregated","id":"cff415be-00ff-4dc3-9d05-8641ae5a2e50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/aggregate/:id","description":"<p>Get a specific item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","aggregate",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"47b4be29-047c-4e4a-aabb-02cff02f3f8e","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"2e48287a-b15a-4a5b-9218-2d61b44d3863","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/aggregate/:id","host":["{{baseUrl}}"],"path":["item","aggregate",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cff415be-00ff-4dc3-9d05-8641ae5a2e50"},{"name":"Get single item aggregated recursive","id":"3b47250c-12e4-4336-932f-d76f48d34c04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/aggregaterecursive/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","aggregaterecursive",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"648dcfcd-6235-4ba7-9a07-b0f9a662b9e4","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"d23f2f28-0d31-4b51-b8f0-a23e941829e0","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/aggregaterecursive/:id","host":["{{baseUrl}}"],"path":["item","aggregaterecursive",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3b47250c-12e4-4336-932f-d76f48d34c04"},{"name":"Get single item history","id":"c4256504-73b2-45c9-8538-bd10328233e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/history/:id","description":"<p>Get a specific item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","history",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"4bf4f04e-0648-4a83-b4f4-7572c7c9932d","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"0055e8d5-2b88-494a-986e-4971d16f7fe7","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/history/:id","host":["{{baseUrl}}"],"path":["item","history",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"c4256504-73b2-45c9-8538-bd10328233e8"},{"name":"Query items","id":"25bf00eb-5929-46ce-b075-e2f96092d508","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"application/json","description":"<p>(Required) </p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"name\": \"itemname\",\n\t\"mimeType\": \"image/jpeg\",\n\t\"folder\": \"<folderId>\",\n\t\"public\": false,\n\t\"types\": [\"Material\"],\n    \"withAttributes\": false,\n    \"withUserAttributes\": false,\n    \"withProperties\": false,\n    \"userAttributeTemplate\": \"<name>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/query","description":"<p>Query a list of items from the system. Below is an example with all possible keys that can be in the query. Choose any combination of them, additionally you can add <code>\"returnIdOnly\": true</code> which will only return the Id of the items instead of the whole set of fields or <code>\"returnCountOnly\": true</code> which will return only the count of elements instead of the elements themselves. You can also query for an attributes value if you add <code>\"attribute\": \"name\", \"attributeValue\": \"value\"</code>.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","query"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"9a0ee010-39d1-4393-8346-c7b7333e7e2b","name":"response","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"<string>","description":"(Required) "}],"url":"{{baseUrl}}/item/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"result\": \"success\",\n \"data\": [\n  {\n   \"_id\": \"5cf5423f097cf627961131eb\",\n   \"name\": \"D1308\",\n   \"type\": \"Material\"\n  },\n  {\n   \"_id\": \"5cf54370eb39143a8bda7625\",\n   \"name\": \"D3274\",\n   \"type\": \"Material\"\n  },\n  {\n   \"_id\": \"5cf7a23304412765b5908896\",\n   \"name\": \"D3810\",\n   \"type\": \"Material\"\n  }\n ]\n}"}],"_postman_id":"25bf00eb-5929-46ce-b075-e2f96092d508"},{"name":"Public query items","id":"b46201a6-e371-4d15-9cb6-4e26260f6348","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"x-access-token","value":""},{"description":"<p>(Required) </p>\n","key":"Content-Type","value":"application/json"}],"body":{"mode":"raw","raw":"{\n    \"client\": \"<clientId>\",\n\t\"name\": \"itemname\",\n\t\"mimeType\": \"image/jpeg\",\n\t\"types\": [\"Material\"],\n    \"withAttributes\": false,\n    \"withUserAttributes\": false,\n    \"withProperties\": false,\n    \"userAttributeTemplate\": \"<name>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/publicquery","description":"<p>Query a list of public items from the system. Below is an example with all possible keys that can be in the query. Client is mandatory. Choose any combination of them, additionally you can add <code>\"returnIdOnly\": true</code> which will only return the Id of the items instead of the whole set of fields or <code>\"returnCountOnly\": true</code> which will return only the count of elements instead of the elements themselves. </p>\n","urlObject":{"path":["item","publicquery"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"53b86b55-cd78-47e6-853a-bba4820d6523","name":"Untitled Example","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"<string>","description":"(Required) "}],"url":"{{baseUrl}}/item/query"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"result\": \"success\",\n \"data\": [\n  {\n   \"_id\": \"5cf5423f097cf627961131eb\",\n   \"name\": \"D1308\",\n   \"type\": \"Material\"\n  },\n  {\n   \"_id\": \"5cf54370eb39143a8bda7625\",\n   \"name\": \"D3274\",\n   \"type\": \"Material\"\n  },\n  {\n   \"_id\": \"5cf7a23304412765b5908896\",\n   \"name\": \"D3810\",\n   \"type\": \"Material\"\n  }\n ]\n}"}],"_postman_id":"b46201a6-e371-4d15-9cb6-4e26260f6348"},{"name":"Get items within folder","id":"13225a3c-731f-4622-a802-c1114aa8830d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/infolder/:folderId?pageSize=50&nextItem=abcdef123456","description":"<p>Get a list of items within a folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","infolder",":folderId"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Sets how many items should be included per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Optional. A cursor to fetch the next page. It's the nextItem property of the previous response.</p>\n","type":"text/plain"},"key":"nextItem","value":"abcdef123456"}],"variable":[{"id":"8f8f62c3-c39a-48e6-9d84-4139b2964b0b","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"535650f5-b9aa-4185-8aca-b6526a735632","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/infolder/:folderId","host":["{{baseUrl}}"],"path":["item","infolder",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"13225a3c-731f-4622-a802-c1114aa8830d"},{"name":"Get item dependencies in folder","id":"6f81defa-e939-4cf7-9568-1868bffab861","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/folderdependencies/:folderId","description":"<p>Get a list of items within a folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","folderdependencies",":folderId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"26026ed0-89c7-4ac6-b024-490fe7936e7f","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"eca256e9-20f2-48aa-9fd7-671f41c6995b","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/folderdependencies/:folderId","host":["{{baseUrl}}"],"path":["item","folderdependencies",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6f81defa-e939-4cf7-9568-1868bffab861"},{"name":"Download item data","id":"d16e50bd-9472-4c86-a5d3-3081624e3eb7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/download/:id","description":"<p>Download the data of a specific item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","download",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"c8122139-7129-4fe3-9e51-e18580b2e848","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"90e4de69-7aff-4b64-8c12-ae69bd1e3eef","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/download/:id","host":["{{baseUrl}}"],"path":["item","download",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"d16e50bd-9472-4c86-a5d3-3081624e3eb7"},{"name":"Get item hash","id":"04495fcc-dd20-421d-abed-7eaa52ccf315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/hash/:id","description":"<p>Download the data of a specific item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","hash",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"f3c1c432-48cc-4444-bbb1-e882c8ff4a37","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"40e63597-7fe7-4091-ac1e-63045889e897","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/hash/:id","host":["{{baseUrl}}"],"path":["item","hash",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"04495fcc-dd20-421d-abed-7eaa52ccf315"},{"name":"Upload item data","id":"04af2136-af6f-404c-88f0-31cd4e0a433d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/upload/:id","description":"<p>Upload the data of a specific item. Uploads should be done as multipart/form-data with the file's data submtited with name \"file\"</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","upload",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"982d7efa-cec5-4aba-9663-87b3392e1137","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"2db7c76d-969e-42f6-946d-2b8cd97328ed","name":"response","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/item/upload/:id","host":["{{baseUrl}}"],"path":["item","upload",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"04af2136-af6f-404c-88f0-31cd4e0a433d"},{"name":"Clear thumbnail","id":"2c780fd3-8256-4dc7-a594-bc37e8cebe97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/clearThumbnail/:id","description":"<p>Clear the thumbnails of an item if they exist</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","clearThumbnail",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"3c349cc6-6d45-4484-8268-830c25afc8c5","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"4e604a0b-8cc7-4b63-b04e-f22b146d6c6d","name":"Untitled Example","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/item/uploadThumbnail/:id","host":["{{baseUrl}}"],"path":["item","uploadThumbnail",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"2c780fd3-8256-4dc7-a594-bc37e8cebe97"},{"name":"Upload and create item","id":"3afdd512-7cc9-4c00-ae74-7e008267afd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/uploadAndCreate/:folderId","description":"<p>Upload a file and automatically create an item for it. Item type will be chosen automatically depending on detected file type. Uploads should be done as multipart/form-data with the file's data submtited with name \"file\"</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","uploadAndCreate",":folderId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"a1520273-3c89-4a49-96a8-59454074acd8","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"4546a31d-5eb1-4682-a8a2-9905fbb3a458","name":"response","originalRequest":{"method":"POST","header":[],"url":{"raw":"{{baseUrl}}/item/uploadAndCreate/:folderId","host":["{{baseUrl}}"],"path":["item","uploadAndCreate",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3afdd512-7cc9-4c00-ae74-7e008267afd5"},{"name":"Request secure download link","id":"49da65a8-f155-464c-a978-b79f35beefd6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/requestsecuredownload/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","requestsecuredownload",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"1545f02d-5209-4ed9-84db-55c103e1f288","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"45237119-2e6c-44ea-a40d-eeaf21a3f303","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/requestsecuredownload/:id","host":["{{baseUrl}}"],"path":["item","requestsecuredownload",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"49da65a8-f155-464c-a978-b79f35beefd6"},{"name":"Secure download","id":"bcd46901-9a47-454a-9a29-841b220a5ac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/item/securedownload/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","securedownload",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"2ce47686-fd6a-488b-bc09-6e8b1a836b38","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"e48b4dd1-bf32-4ccc-bc4d-0611f9d0dae1","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/item/securedownload/:id","host":["{{baseUrl}}"],"path":["item","securedownload",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"bcd46901-9a47-454a-9a29-841b220a5ac7"},{"name":"Copy item data","id":"95b6efc2-c313-4100-9550-d3d962b12441","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"sourceItemId\": \"<id>\",\n\t\"destItemId\": \"<id>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/copyData","description":"<p>Copies the data of one item to another. If the other item already has data, it is removed first</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","copyData"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"95b6efc2-c313-4100-9550-d3d962b12441"},{"name":"Get ACL","id":"5524154f-3260-444b-b671-d292d7b0c84b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/acl/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","acl",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"5524154f-3260-444b-b671-d292d7b0c84b"},{"name":"Get items that link an item","id":"661cc328-9061-484c-b85d-a26e5ffac304","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/linking/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","linking",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"661cc328-9061-484c-b85d-a26e5ffac304"},{"name":"Set attributes","id":"cfd04058-1ee9-4a6e-8916-32775a06e082","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{baseUrl}}/item/setAttributes","description":"<p>Set attributes of one ore more items</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","setAttributes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"7c7a8316-28dd-4c8c-ba91-7684d427be55","name":"Set attributes","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": [\"5db9973cb03492824781889d\"],\n    \"attributes\": {\n        \"attribute name\": \"value\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/setAttributes"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"20"},{"key":"ETag","value":"W/\"14-rq9iupSkipoci1FrGvX7wxkNFCw\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Thu, 05 Nov 2020 15:58:36 GMT"},{"key":"Connection","value":"keep-alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\"\n}"}],"_postman_id":"cfd04058-1ee9-4a6e-8916-32775a06e082"},{"name":"Download attachment","id":"27d9ed01-ffe0-4ee8-867b-5e8617aeecca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/attachment/:id/:name/:queryParam/:index","description":"<p>Download an attachment that is stored with an item. This can currently only be preview attachments which always have index 0</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","attachment",":id",":name",":queryParam",":index"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"},{"type":"any","value":"","key":"name"},{"type":"any","value":"","key":"queryParam"},{"type":"any","value":"","key":"index"}]}},"response":[],"_postman_id":"27d9ed01-ffe0-4ee8-867b-5e8617aeecca"},{"name":"Upload attachment","id":"7962001f-6928-40c5-9a97-83155650520a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/attachment/:id/:name/:queryParam/:index","description":"<p>Download an attachment that is stored with an item. This can currently only be preview attachments which always have index 0</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","attachment",":id",":name",":queryParam",":index"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"},{"type":"any","value":"","key":"name"},{"type":"any","value":"","key":"queryParam"},{"type":"any","value":"","key":"index"}]}},"response":[],"_postman_id":"7962001f-6928-40c5-9a97-83155650520a"},{"name":"Omit LOD generation","id":"935e4a01-e825-4765-83c6-b29c1d4b3066","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/setOmitLodGeneration/:id/:value","description":"<p>Download an attachment that is stored with an item. This can currently only be preview attachments which always have index 0</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","setOmitLodGeneration",":id",":value"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"},{"type":"any","value":"false","key":"value"}]}},"response":[],"_postman_id":"935e4a01-e825-4765-83c6-b29c1d4b3066"},{"name":"Omit thumbnail generation","id":"7e5076ba-e6af-4252-add4-79bf7162ee60","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/setOmitThumbnailGeneration/:id/:value","description":"<p>Download an attachment that is stored with an item. This can currently only be preview attachments which always have index 0</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","setOmitThumbnailGeneration",":id",":value"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"},{"type":"any","value":"","key":"value"}]}},"response":[],"_postman_id":"7e5076ba-e6af-4252-add4-79bf7162ee60"},{"name":"Omit preview generation","id":"9c3573f9-34d2-4369-8ea3-d37d4a0aa635","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/setOmitPreviewGeneration/:id/:value","description":"<p>Download an attachment that is stored with an item. This can currently only be preview attachments which always have index 0</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","setOmitPreviewGeneration",":id",":value"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"},{"type":"any","value":"false","key":"value"}]}},"response":[],"_postman_id":"9c3573f9-34d2-4369-8ea3-d37d4a0aa635"},{"name":"Download public attachment","id":"0633b981-80ee-41e3-b3cb-f1c6e136bba6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/publicattachment/:id/:name/:queryParam/:index","description":"<p>Download an attachment that is stored with a public item. This can currently only be preview attachments which always have index 0</p>\n","urlObject":{"path":["item","publicattachment",":id",":name",":queryParam",":index"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"},{"type":"any","value":"","key":"name"},{"type":"any","value":"","key":"queryParam"},{"type":"any","value":"","key":"index"}]}},"response":[],"_postman_id":"0633b981-80ee-41e3-b3cb-f1c6e136bba6"},{"name":"Increase item views","id":"799878c9-4ebb-4484-a3e9-a27ed2a0c87f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/item/increaseViews/:id","urlObject":{"path":["item","increaseViews",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"799878c9-4ebb-4484-a3e9-a27ed2a0c87f"},{"name":"Get item views","id":"f37cbdf6-8ee9-46b7-8464-3258d9f72b16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/item/views/:id","urlObject":{"path":["item","views",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[],"_postman_id":"f37cbdf6-8ee9-46b7-8464-3258d9f72b16"},{"name":"Get counts","id":"ae18dd79-ee60-4d41-b889-f24c34e72ef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/counts/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","counts",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"ae18dd79-ee60-4d41-b889-f24c34e72ef2"},{"name":"Get public counts","id":"9d2badd6-4956-4d0f-838d-4763feb46400","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/publiccounts/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","publiccounts",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"08b3a8bc-a849-4720-bf30-c3ab079fe8a1","type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"9d2badd6-4956-4d0f-838d-4763feb46400"},{"name":"Like item","id":"8cc3b085-ad42-4f81-ab36-892b86612bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/like/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","like",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"8cc3b085-ad42-4f81-ab36-892b86612bb8"},{"name":"Unlike item","id":"419220fe-2089-4f91-a361-b1c5d7e03b6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/unlike/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","unlike",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"419220fe-2089-4f91-a361-b1c5d7e03b6b"},{"name":"Make items public","id":"f2d4e1fb-4e69-41e0-bda6-d53799691d26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"<object Id or object Id array>\",\n    \"recursive\": false,\n    \"inSubfolders\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/makepublic","description":"<p>This endpoint allows to make items public. The request expects either a single item ID or an item ID array, plus two optional boolean flags. The recursive flag will cause not only the specified items to become public but also everything that is linked in them. The inSubfolders flag is an additional flag for the recursive mode that will mean that all the items that are traversed will need to reside below the main item's folder to be made public or it will be filtered out. This then requires the id parameter to be a single item, no array</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","makepublic"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f2d4e1fb-4e69-41e0-bda6-d53799691d26"},{"name":"Make items private","id":"38aaa245-9115-4a35-8ef1-d111582dce5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"<object Id or object Id array>\",\n    \"recursive\": false,\n    \"inSubfolders\": false\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/makeprivate","description":"<p>This endpoint allows to make items private. The request expects either a single item ID or an item ID array, plus two optional boolean flags. The recursive flag will cause not only the specified items to become private but also everything that is linked in them. The inSubfolders flag is an additional flag for the recursive mode that will mean that all the items that are traversed will need to reside below the main item's folder to be made private or it will be filtered out. This then requires the id parameter to be a single item, no array</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","makeprivate"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"38aaa245-9115-4a35-8ef1-d111582dce5f"},{"name":"Set auto destruct timer","id":"6c806465-b8a3-4e5e-8a0c-9c4400b6c25f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/setAutoDestruct/:id/:date","description":"<p>This will set an auto destruct timer on an item which will cause the item to be automatically deleted after this time stamp. The timestamp needs to be in the format YYYYMMDDhhmmss</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","setAutoDestruct",":id",":date"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"},{"type":"any","value":null,"key":"date"}]}},"response":[],"_postman_id":"6c806465-b8a3-4e5e-8a0c-9c4400b6c25f"},{"name":"Clear auto destruct timer","id":"71b12edf-e358-4139-a9da-1a108aa75583","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/item/clearAutoDestruct/:id","description":"<p>This will clear the auto destruct timer on an item if it exists</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","clearAutoDestruct",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"71b12edf-e358-4139-a9da-1a108aa75583"},{"name":"Resolve relative item","id":"19ae5cf7-908c-4f9b-89f1-92586c4a704f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"path\": \"<relative-path>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/item/resolve/:id","description":"<p>This endpoint will resolve a path relative to an item ID. Let's say you have a scene and below in a folder structure want to resolve an image ID, you pass the scene's item ID plus the relative image path below that scene like \"Resources/Images/AlbedoTexture\" and this endpoint will resolve the image item ID for you. It is important to note, that only paths below can be used, paths like \"../Folder/ImageItem\" are not possible and will result to an item not found error.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","resolve",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"19ae5cf7-908c-4f9b-89f1-92586c4a704f"},{"name":"Delete attachment","id":"698b2fa9-e0ac-44b7-84d9-fbd2f7f551cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"formdata","formdata":[{"key":"","type":"file","value":null}]},"url":"{{baseUrl}}/item/attachment/:id/:name/:queryParam/:index","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["item","attachment",":id",":name",":queryParam",":index"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"5e85c66a41b4e2dbbcd00b45","key":"id"},{"type":"any","value":"preview","key":"name"},{"type":"any","value":"","key":"queryParam"},{"type":"any","value":"","key":"index"}]}},"response":[],"_postman_id":"698b2fa9-e0ac-44b7-84d9-fbd2f7f551cc"}],"id":"0810bcf7-20b5-4b14-bcbb-9a11a2f7292a","_postman_id":"0810bcf7-20b5-4b14-bcbb-9a11a2f7292a","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Folders","item":[{"name":"Get all folders","id":"6ac7659c-413b-4e2a-a9dd-ee7cc2d3bcc5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder","description":"<p>Get a list of all folders from the system</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8ebd2f5f-8ae5-4bd7-ad32-a882ab9adf2e","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/folder"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"6ac7659c-413b-4e2a-a9dd-ee7cc2d3bcc5"},{"name":"Create folder","id":"be85a89b-24f9-4545-b77f-9a9b34c71072","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder","description":"<p>Modify a folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"5135c473-1693-454a-a726-55a4b02e4ef7","name":"response","originalRequest":{"method":"POST","header":[],"url":"{{baseUrl}}/folder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"be85a89b-24f9-4545-b77f-9a9b34c71072"},{"name":"Update folder","id":"ebe3393f-052e-411c-a31c-86b60e785415","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder","description":"<p>Modify a folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"07cf7f02-94c8-4b06-aaa8-5d7cf38c13d5","name":"response","originalRequest":{"method":"PUT","header":[],"url":"{{baseUrl}}/folder"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ebe3393f-052e-411c-a31c-86b60e785415"},{"name":"Delete folder","id":"8afbd3a6-12b6-4955-990f-f9cbd5cc4a03","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"<string>","description":"<p>(Required) </p>\n"}],"url":"{{baseUrl}}/folder","description":"<p>Delete a folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b5f72d18-5610-40e1-93a6-0ed02cda430c","name":"response","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"<string>","description":"(Required) "}],"url":"{{baseUrl}}/folder"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"\"<object>\""}],"_postman_id":"8afbd3a6-12b6-4955-990f-f9cbd5cc4a03"},{"name":"Get all folders (sync)","id":"0c05fa9b-a25a-404e-a699-328d63ab04b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder/synclist","description":"<p>Get a list of all folders from the system</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","synclist"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b773dd5e-6855-4169-89a0-4e8655ea4122","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/folder/synclist"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"0c05fa9b-a25a-404e-a699-328d63ab04b7"},{"name":"Get single folder","id":"1e7cfc4f-270c-41b0-a3cc-1bc0b0d8e289","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder/:id","description":"<p>Get a specific folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"fce53216-0462-48c0-9476-38971017a5e9","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"id"}]}},"response":[{"id":"46529729-080b-448f-b34c-04f0a7e70e3d","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/folder/:id","host":["{{baseUrl}}"],"path":["folder",":id"],"variable":[{"key":"id"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1e7cfc4f-270c-41b0-a3cc-1bc0b0d8e289"},{"name":"Move folder","id":"239783dc-bbfb-4175-ba62-abe408fb95ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"body":{"mode":"raw","raw":"{\n    \"folders\": [\"<folder-id>\", \"<folder-id>\"],\n    \"dest\": \"<folder-id>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/folder/move","description":"<p>Move a folder to a new destination</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","move"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"6078ae20-5dcb-407b-b747-bfafe6ef84f5","name":"response","originalRequest":{"method":"POST","header":[],"url":"{{baseUrl}}/folder/move"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"239783dc-bbfb-4175-ba62-abe408fb95ca"},{"name":"Get folders within folder","id":"40edc2b7-e3e7-451c-865b-2bde6774f6c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder/infolder/:folderId?returnLatestPackage=true","description":"<p>Get a list of all folders within another folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","infolder",":folderId"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>If set to true, the response will include a field \"latestPackage\", which contains the ID of the latest package for every item, if one exists.</p>\n","type":"text/plain"},"key":"returnLatestPackage","value":"true"}],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"0719ec38-f41d-411c-8917-a50aa0b049e9","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/folder/infolder/:folderId","host":["{{baseUrl}}"],"path":["folder","infolder",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"40edc2b7-e3e7-451c-865b-2bde6774f6c8"},{"name":"Get folders within multiple folders","id":"4f859529-0bfb-4d6d-9664-0774bb89334d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"body":{"mode":"raw","raw":"{\r\n    \"folders\": [\"<folder-id>\", \"<folder-id>\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/folder/infolderquery?lastUpdatedAt=2023-10-20T10:47:20.717Z","description":"<p>Get a list of all folders within another folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","infolderquery"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. When the specified ISO 8601 timestamp matches the updatedAt field of a folder, \"notModified = true\" will be returned instead of its contents.</p>\n","type":"text/plain"},"key":"lastUpdatedAt","value":"2023-10-20T10:47:20.717Z"}],"variable":[]}},"response":[{"id":"3bce8de2-4a9f-4f2a-b430-5d2c07f0dee0","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/folder/infolder/:folderId","host":["{{baseUrl}}"],"path":["folder","infolder",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4f859529-0bfb-4d6d-9664-0774bb89334d"},{"name":"Get ACLs of multiple folders","id":"34e8f28d-db78-43aa-b542-2e8d213ef7fb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"body":{"mode":"raw","raw":"{\r\n    \"ids\": [\"<folder-id>\", \"<folder-id>\"]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/folder/aclquery","description":"<p>Get a list of all folders within another folder</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","aclquery"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"4e23282d-a4ec-4472-a69b-4c3231681ec8","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/folder/infolder/:folderId","host":["{{baseUrl}}"],"path":["folder","infolder",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"34e8f28d-db78-43aa-b542-2e8d213ef7fb"},{"name":"Get full path of folder","id":"b4cae122-53b8-48e4-884b-1c8da3ca645f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder/path/:folderId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","path",":folderId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"442b5a28-c2e0-4358-9294-80cc470667aa","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"b0513f49-eac2-493d-8759-d1754ab36130","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/folder/path/:folderId","host":["{{baseUrl}}"],"path":["folder","path",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b4cae122-53b8-48e4-884b-1c8da3ca645f"},{"name":"Get graph","id":"cb914a91-3718-4745-a14a-9c1ab88de566","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/folder/graph/:folderId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","graph",":folderId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"588eec6c-0cf5-4e2f-ac34-4b9b5650ea59","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"43fef284-7c77-4516-b88e-388c5cd0c036","name":"response","originalRequest":{"method":"GET","header":[],"url":{"raw":"{{baseUrl}}/folder/graph/:folderId","host":["{{baseUrl}}"],"path":["folder","graph",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"cb914a91-3718-4745-a14a-9c1ab88de566"},{"name":"Update graph","id":"397ff471-d527-45d6-853e-5b5d0a2f6ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{baseUrl}}/folder/graph/:folderId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","graph",":folderId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"id":"2f06a44e-8400-4584-82e1-ae15754d4658","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"string","value":"<string>","key":"folderId"}]}},"response":[{"id":"528c4207-835f-46ad-8dca-d4afb12c99bd","name":"response","originalRequest":{"method":"PUT","header":[],"url":{"raw":"{{baseUrl}}/folder/graph/:folderId","host":["{{baseUrl}}"],"path":["folder","graph",":folderId"],"variable":[{"key":"folderId"}]}},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"397ff471-d527-45d6-853e-5b5d0a2f6ab2"},{"name":"Resolve folder path","id":"034fa11f-83db-4a8e-9c7a-6bdc2aa574c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"path\": \"/\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/folder/resolve","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["folder","resolve"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"034fa11f-83db-4a8e-9c7a-6bdc2aa574c5"}],"id":"16536b55-0713-4975-98db-c6357614fe90","_postman_id":"16536b55-0713-4975-98db-c6357614fe90","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Groups","item":[{"name":"Get all groups","id":"36d11fdd-86e1-4c42-be1b-7a3eaa40a821","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/group?pageSize=50&nextItem=abcdef123456","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Sets how many items should be included per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Optional. A cursor to fetch the next page. It's the nextItem property of the previous response.</p>\n","type":"text/plain"},"key":"nextItem","value":"abcdef123456"}],"variable":[]}},"response":[],"_postman_id":"36d11fdd-86e1-4c42-be1b-7a3eaa40a821"},{"name":"Create group","id":"e193a5cf-bd4e-4d05-aec4-83b939a63759","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n\t\"name\": \"Groupname\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/group","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e193a5cf-bd4e-4d05-aec4-83b939a63759"},{"name":"Modify group","id":"a5f8a570-22a4-46e4-aa63-fab48b2045b7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n\t\"_id\": \"5f2ace40da558b5d6187ba97\",\n\t\"name\": \"Changed groupname\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/group","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a5f8a570-22a4-46e4-aa63-fab48b2045b7"},{"name":"Delete group","id":"5ff6c11d-b97a-460d-a1f5-139457557ee6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n\t\"_id\": \"5f2ace40da558b5d6187ba97\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/group","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5ff6c11d-b97a-460d-a1f5-139457557ee6"},{"name":"Get specific group","id":"3b9c0626-4fa0-4303-9718-2cb31476e824","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/group/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"string","value":"5f2acf3d06e5d460662042c4","key":"id"}]}},"response":[],"_postman_id":"3b9c0626-4fa0-4303-9718-2cb31476e824"},{"name":"Get group folder","id":"717cec8f-71e7-4670-b445-cd26517b4bfd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/group/folder/:id","description":"<p>Return the Id of a group's folder. If the folder does not exist yet, it is created. The requesting user must be member of the group or the method will return a 404 error.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group","folder",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"717cec8f-71e7-4670-b445-cd26517b4bfd"},{"name":"Get group quota info","id":"15cc7aeb-b28c-4fd9-83c6-66327d7924a0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/group/quota/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group","quota",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"15cc7aeb-b28c-4fd9-83c6-66327d7924a0"},{"name":"Get public info","id":"94498ada-9180-45c0-96b6-6ffb4b0581d0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/group/publicinfo/:id/:clientId/:avatarSize","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group","publicinfo",":id",":clientId",":avatarSize"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"},{"type":"any","value":null,"key":"clientId"},{"type":"any","value":null,"key":"avatarSize"}]}},"response":[],"_postman_id":"94498ada-9180-45c0-96b6-6ffb4b0581d0"},{"name":"Get users","id":"881becc8-8b60-47db-bc4a-26554e4cba72","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/group/users/:groupId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["group","users",":groupId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>The ID of the group.</p>\n","type":"text/plain"},"type":"any","value":"","key":"groupId"}]}},"response":[],"_postman_id":"881becc8-8b60-47db-bc4a-26554e4cba72"}],"id":"71fc581c-2874-4db5-a7bc-0a90c120cfb6","_postman_id":"71fc581c-2874-4db5-a7bc-0a90c120cfb6","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Jobs","item":[{"name":"Get all jobs","id":"5d5e81e1-ad86-45ae-908e-87b456ff4e67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/job?pageSize=50&nextItem=abcdef123456","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Sets how many items should be included per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Optional. A cursor to fetch the next page. It's the nextItem property of the previous response.</p>\n","type":"text/plain"},"key":"nextItem","value":"abcdef123456"}],"variable":[]}},"response":[{"id":"1352c229-93c5-4094-b3fd-ca3dea801376","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"5d5e81e1-ad86-45ae-908e-87b456ff4e67"},{"name":"Create job","id":"85928abb-c46d-4e5b-b173-be47a99d7ea7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""}],"body":{"mode":"raw","raw":"{\n    \"type\": \"<jobtype>\",\n    \"elements\": [{\n        \"_id\": \"<element id>\",\n        \"isFolder\": false\n    }],\n    \"parameters\": [{\n        \"name\": \"<paramname>\",\n        \"value\": \"<value>\"\n    }]\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/job","description":"<p>This request creates a new job. Once it returns you will get a job Id as return. The jobs run asynchronously so if you want to know its status, you can retrieve your jobs with the \"Get my jobs\" request.</p>\n<p>To get a list of possible jobs to create including its expected parameters, use the \"Get all manual job types\" request.</p>\n<p>Needs \"job_create\" permission.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"e7d2eec4-e43e-4d5e-aadf-b235b333cef6","name":"response","originalRequest":{"method":"POST","header":[],"url":"{{baseUrl}}/job"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n \"type\": \"Scale\",\n \"items\": [\n  {\n   \"_id\": \"5d1622661a06083564c6ca31\",\n   \"isFolder\": true\n  },\n  {\n   \"_id\": \"5d08e3740434a0de79437a72\",\n   \"isFolder\": false\n  },\n  {\n   \"_id\": \"5d08e7ce5dc161df380e1531\",\n   \"isFolder\": false\n  }\n ],\n \"parameters\": [\n  {\n   \"value\": \"123\",\n   \"name\": \"Width\"\n  },\n  {\n   \"value\": \"234\",\n   \"name\": \"Height\"\n  },\n  {\n   \"value\": \"true\",\n   \"name\": \"Make copy\"\n  },\n  {\n   \"value\": \"_Scaled\",\n   \"name\": \"Postfix\"\n  }\n ]\n}"}],"_postman_id":"85928abb-c46d-4e5b-b173-be47a99d7ea7"},{"name":"Get all jobs (aggregated)","id":"be72fe95-3adf-4cdc-ab3f-bed6c80c95ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/job/aggregated?pageSize=50&nextItem=abcdef123456","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job","aggregated"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Sets how many items should be included per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Optional. A cursor to fetch the next page. It's the nextItem property of the previous response.</p>\n","type":"text/plain"},"key":"nextItem","value":"abcdef123456"}],"variable":[]}},"response":[{"id":"149a81b3-9de5-41a2-acf5-024e8bf5190e","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/job/aggregated"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"be72fe95-3adf-4cdc-ab3f-bed6c80c95ef"},{"name":"Get my jobs","id":"619062f7-cd81-4ee0-a01f-d2ee5eec3609","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/job/mine","description":"<p>Get a list of all your current jobs with status information</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job","mine"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2cd1142f-bb4c-4830-97eb-8d6087a22b32","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/job/mine"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"619062f7-cd81-4ee0-a01f-d2ee5eec3609"},{"name":"Get manual job types for client","id":"ad1a2422-600a-4186-8747-7b014a856eae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/job/manualtypes","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job","manualtypes"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d3f808dd-7a0d-40d5-aec1-efea169701e5","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/job/manualtypes"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ad1a2422-600a-4186-8747-7b014a856eae"},{"name":"Get specific job","id":"3b3e1ff6-a46f-4cae-8d68-c372725fc5e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/job/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"3b3e1ff6-a46f-4cae-8d68-c372725fc5e2"},{"name":"Get specific job state","id":"467391bd-4905-4b28-8aab-f31a7f02356c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/job/state/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["job","state",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"467391bd-4905-4b28-8aab-f31a7f02356c"}],"id":"ff29ecf2-d615-4440-994a-1af5b9e7010f","_postman_id":"ff29ecf2-d615-4440-994a-1af5b9e7010f","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Datatypes","item":[{"name":"Get datatypes list","id":"98545323-faa0-4702-95dd-d9dddeed8e30","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/datatype","description":"<p>Get information about all registered datatypes</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["datatype"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"b00f49b8-11e6-4461-9927-b81ed53b04e1","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/datatype"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"98545323-faa0-4702-95dd-d9dddeed8e30"},{"name":"Get active datatypes list for client","id":"8b721e4e-675d-48ef-818f-8344c1d2ebc2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/datatype/onclient","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["datatype","onclient"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b721e4e-675d-48ef-818f-8344c1d2ebc2"},{"name":"Get active datatypes list on client for all users","id":"ddaca317-b0be-4a7f-b42d-67d64f01e90e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/datatype/onclientforall","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["datatype","onclientforall"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ddaca317-b0be-4a7f-b42d-67d64f01e90e"}],"id":"e48ef72f-9f4d-44f4-9f33-e858c52af9cc","_postman_id":"e48ef72f-9f4d-44f4-9f33-e858c52af9cc","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Permissions","item":[{"name":"Get all permissions","id":"dcf4f0f4-8e25-4d96-b7e0-8639bf39a782","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/permission","description":"<p>Gets a list of all possible permissions in the system</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["permission"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"2880ea08-3463-4b42-b7a6-e28b20ab7038","name":"response","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/permission"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"dcf4f0f4-8e25-4d96-b7e0-8639bf39a782"}],"id":"bc9d6638-3af5-4151-9e43-0d0145bca89e","_postman_id":"bc9d6638-3af5-4151-9e43-0d0145bca89e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Users","item":[{"name":"Change my profile","id":"3b43b030-db1d-4fbd-b8a9-c8215ee06652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"x-access-token","value":""}],"url":"{{baseUrl}}/user/myprofile","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["user","myprofile"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"f4777233-9827-499a-88bd-92eeb591d361","name":"Untitled Example","originalRequest":{"method":"PUT","header":[],"url":"{{baseUrl}}/user/myprofile"},"status":"OK","code":200,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"3b43b030-db1d-4fbd-b8a9-c8215ee06652"},{"name":"Activate user","id":"8ffe802f-9225-44f0-8f2e-09ca481492c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"password\": \"<chosen-password>\",\n\t\"token\": \"<invitation-token>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/user/activate","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["user","activate"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8ffe802f-9225-44f0-8f2e-09ca481492c3"}],"id":"26051288-bb75-4b67-8db2-35c3afbaef8e","_postman_id":"26051288-bb75-4b67-8db2-35c3afbaef8e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Clients","item":[{"name":"Get my client ","id":"802b1ca6-897a-46a0-a18f-28e2426aa85f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/client/my","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["client","my"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"802b1ca6-897a-46a0-a18f-28e2426aa85f"},{"name":"Save my client","id":"2b52f978-145e-4dde-b97b-df8cd2d5c634","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"name\": \"<newname>\",\n    \"acl\": []\n}"},"url":"{{baseUrl}}/client/my","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["client","my"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2b52f978-145e-4dde-b97b-df8cd2d5c634"},{"name":"Get categories","id":"8eb6829d-7b92-418e-aefd-81737b6ba516","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/client/categories/:clientId","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["client","categories",":clientId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"clientId"}]}},"response":[],"_postman_id":"8eb6829d-7b92-418e-aefd-81737b6ba516"},{"name":"Get public categories","id":"e7a37fa5-4643-4884-bf94-d7b7ce3068b5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/client/publiccategories/:clientId","urlObject":{"path":["client","publiccategories",":clientId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"clientId"}]}},"response":[],"_postman_id":"e7a37fa5-4643-4884-bf94-d7b7ce3068b5"}],"id":"5e892080-095c-46f7-9ced-5acedcb47636","_postman_id":"5e892080-095c-46f7-9ced-5acedcb47636","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Invoices","item":[{"name":"Get my invoices","id":"e4c40770-6c3a-4597-907f-5baf86298abe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/invoice","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["invoice"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e4c40770-6c3a-4597-907f-5baf86298abe"},{"name":"Download invoice Pdf","id":"aa46dbeb-2445-4483-8014-2e3d992f1ecd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/invoice/download/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["invoice","download",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"string","value":"","key":"id"}]}},"response":[],"_postman_id":"aa46dbeb-2445-4483-8014-2e3d992f1ecd"}],"id":"41057cc1-a254-4a33-8bc6-7ac0aa19a73a","description":"<p>Returns a list of all invoices</p>\n","event":[{"listen":"prerequest","script":{"id":"db895e16-bc69-4a30-a30e-e302b9cab95e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"bf996b5b-68f8-42d6-9384-874dc322b45e","type":"text/javascript","exec":[""]}}],"_postman_id":"41057cc1-a254-4a33-8bc6-7ac0aa19a73a","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Licenses","item":[{"name":"Get list of licenses","id":"03db53d4-7df6-41cf-99d2-089ae99f9556","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/license","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["license"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"66d8c19c-eab9-45f9-a906-12c833b35746","name":"Get list of licenses","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/license"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"RateLimit-Limit","value":"1000"},{"key":"RateLimit-Remaining","value":"999"},{"key":"RateLimit-Reset","value":"10"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"215"},{"key":"ETag","value":"W/\"d7-xPPeUCq5PY37p2juB/pjRRYPEXk\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Thu, 10 Mar 2022 07:40:09 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [\n        {\n            \"_id\": \"61b8d5acd9b2e132b26b98e5\",\n            \"name\": \"Test license\",\n            \"link\": \"\",\n            \"text\": \"\",\n            \"shorttext\": \"\"\n        },\n        {\n            \"_id\": \"61b8d5acc637d5530197a4a6\",\n            \"name\": \"Test license 2\",\n            \"link\": \"\",\n            \"text\": \"\",\n            \"shorttext\": \"\"\n        }\n    ]\n}"}],"_postman_id":"03db53d4-7df6-41cf-99d2-089ae99f9556"},{"name":"Create license","id":"1a8fa1fe-8f7c-4226-b96b-7fcb550aac8c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"url":"{{baseUrl}}/license","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["license"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1a8fa1fe-8f7c-4226-b96b-7fcb550aac8c"},{"name":"Update license","id":"099c1be3-ae6b-42f3-bdcd-30c0000470fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"url":"{{baseUrl}}/license","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["license"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"099c1be3-ae6b-42f3-bdcd-30c0000470fe"},{"name":"Delete license","id":"11981956-91e4-4047-9e67-05af74f6b66f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/license","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["license"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"11981956-91e4-4047-9e67-05af74f6b66f"},{"name":"Get specific license","id":"ce5b7063-298c-4767-8ce6-ac622e724871","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/license/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["license",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"ce5b7063-298c-4767-8ce6-ac622e724871"},{"name":"Get public license list","id":"36e0ec9f-b2ed-4ff8-b279-ba3033074e3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/license/publiclist/:clientId","urlObject":{"path":["license","publiclist",":clientId"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"clientId"}]}},"response":[],"_postman_id":"36e0ec9f-b2ed-4ff8-b279-ba3033074e3b"},{"name":"Get public license","id":"882e382d-2148-4899-b7d1-cd44e6619086","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[],"url":"{{baseUrl}}/license/public/:id","urlObject":{"path":["license","public",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"882e382d-2148-4899-b7d1-cd44e6619086"}],"id":"acb34759-e9cf-4501-a1e7-b9aae6c55f18","_postman_id":"acb34759-e9cf-4501-a1e7-b9aae6c55f18","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Payments","item":[{"name":"Checkout","id":"c82e50e8-603a-4af1-9d1d-c51eccb3afd3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"successUrl\": \"<sucess-url>\",\n    \"cancelUrl\": \"<cancel-url>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/payment/checkout","description":"<p>This endpoint allows to setup payment processing for a client. To do that, call this endpoint with 2 valid URLs to redirect to after payment processing finishes, then point your browser to the returned URL that will do the actual payment setup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["payment","checkout"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"8a45b5b0-1981-4a77-85b2-de14c02f84f2","name":"Checkout","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"successUrl\": \"https://meshvalley.com/checkoutSuccessful\",\n    \"cancelUrl\": \"https://meshvalley.com/checkoutCanceled\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/payment/checkout"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"RateLimit-Limit","value":"1000"},{"key":"RateLimit-Remaining","value":"999"},{"key":"RateLimit-Reset","value":"10"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"471"},{"key":"ETag","value":"W/\"1d7-FMT0XCCsMkzOaM2MZ7LLvG8rwSY\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 30 Mar 2022 09:53:03 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": \"examplesessionid\",\n        \"url\": \"https://examplecheckouturl.com/checkout\"\n    }\n}"}],"_postman_id":"c82e50e8-603a-4af1-9d1d-c51eccb3afd3"},{"name":"User checkout","id":"98496e8f-0ef7-4dcd-b567-de5bf8c5004f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"successUrl\": \"<sucess-url>\",\n    \"cancelUrl\": \"<cancel-url>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/payment/usercheckout","description":"<p>This endpoint allows to setup payment processing for a user. To do that, call this endpoint with 2 valid URLs to redirect to after payment processing finishes, then point your browser to the returned URL that will do the actual payment setup.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["payment","usercheckout"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"99566997-fd60-45ae-b05b-975f1842ca2b","name":"User checkout","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"successUrl\": \"<sucess-url>\",\n    \"cancelUrl\": \"<cancel-url>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/payment/checkout"},"_postman_previewlanguage":"json","header":null,"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": {\n        \"id\": \"examplesessionid\",\n        \"url\": \"https://examplecheckouturl.com/checkout\"\n    }\n}"}],"_postman_id":"98496e8f-0ef7-4dcd-b567-de5bf8c5004f"}],"id":"a807ce64-c062-405e-b276-410014303a16","_postman_id":"a807ce64-c062-405e-b276-410014303a16","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Purchases","item":[{"name":"Get my purchases","id":"c24a6bf3-fd03-44ba-b533-19dc4b54d1e9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/purchase?pageSize=50&nextItem=abcdef123456","description":"<p>Get a list of all my purchases. User purchases must be enabled on the client or this method will return with an error.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["purchase"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>Optional. Sets how many items should be included per page.</p>\n","type":"text/plain"},"key":"pageSize","value":"50"},{"description":{"content":"<p>Optional. A cursor to fetch the next page. It's the nextItem property of the previous response.</p>\n","type":"text/plain"},"key":"nextItem","value":"abcdef123456"}],"variable":[]}},"response":[{"id":"e809ac4d-ec0f-4032-9ff1-d9c5f3af53d0","name":"Get my purchases","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"RateLimit-Limit","value":"1000"},{"key":"RateLimit-Remaining","value":"999"},{"key":"RateLimit-Reset","value":"10"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"319"},{"key":"ETag","value":"W/\"13f-sNVHC6mOCoiRm+tR4b4g3LE8qr8\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Thu, 10 Mar 2022 08:45:56 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [\n        {\n            \"_id\": \"6229ba06b19ee0d5aea0caa6\",\n            \"purchasable\": \"6228c0a91300ab90abfa825a\",\n            \"option\": \"6228c0a91300ab90abfa825b\",\n            \"active\": true,\n            \"paymentHistory\": [\n                {\n                    \"_id\": \"6229ba06b19ee0d5aea0caa7\",\n                    \"date\": \"2022-03-10T08:42:44.328Z\",\n                    \"invoice\": \"6229ba04b19ee0d5aea0caa5\"\n                }\n            ],\n            \"createdAt\": \"2022-03-10T08:42:46.177Z\"\n        }\n    ]\n}"}],"_postman_id":"c24a6bf3-fd03-44ba-b533-19dc4b54d1e9"},{"name":"Make a purchase","id":"d9aae50e-3c43-4cdf-bc6f-36d1b1ab45fa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"purchasable\": \"<purchasable-id>\",\n    \"option\": \"<option-id>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/purchase","description":"<p>Make a purchase on the client. User purchases must be enabled on this client or the endpoint will return with an error. For a list of purchasables and options, use the purchasable list endpoint</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["purchase"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"a6dd94d5-b4c3-4a6c-9e42-b50fd9e97b88","name":"Make a purchase","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"purchasable\": \"6228c0a91300ab90abfa825a\",\n    \"option\": \"6228c0a91300ab90abfa825b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"RateLimit-Limit","value":"1000"},{"key":"RateLimit-Remaining","value":"999"},{"key":"RateLimit-Reset","value":"10"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"54"},{"key":"ETag","value":"W/\"36-eQDaiHxtCIKlUlTNQRpilRLbI9o\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 30 Mar 2022 11:44:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": \"6244429a215c8730a5741a43\"\n}"}],"_postman_id":"d9aae50e-3c43-4cdf-bc6f-36d1b1ab45fa"},{"name":"Cancel a purchase","id":"3ef94273-8fc6-4a64-b80b-1d468c29b4fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\n    \"id\": \"<purchase-id>\"    \n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/purchase","description":"<p>This endpoint will cancel a purchase. This only works for subscriptions. The purchase will still be active for the remainder of the purchased time and will then be deactivated.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["purchase"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"d435cd92-06c3-4ad2-9d8a-fd2d67642987","name":"Make a purchase","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"purchasable\": \"6228c0a91300ab90abfa825a\",\n    \"option\": \"6228c0a91300ab90abfa825b\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/purchase"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"RateLimit-Limit","value":"1000"},{"key":"RateLimit-Remaining","value":"999"},{"key":"RateLimit-Reset","value":"10"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"54"},{"key":"ETag","value":"W/\"36-eQDaiHxtCIKlUlTNQRpilRLbI9o\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Wed, 30 Mar 2022 11:44:26 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": \"6244429a215c8730a5741a43\"\n}"}],"_postman_id":"3ef94273-8fc6-4a64-b80b-1d468c29b4fd"}],"id":"6a04b4e3-9f0c-4b8d-a8a2-83ed38341291","_postman_id":"6a04b4e3-9f0c-4b8d-a8a2-83ed38341291","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Purchasables","item":[{"name":"Get list of purchasables","id":"864a6e8b-4186-44d4-a9db-7c0a0d0767c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/purchasable","description":"<p>This endpoint retrieves a list of purchasable items for a client. This means a list of items, a user can purchase. To use this, user purchases must be enabled for this client, otherwise the endpoint will return with an error.</p>\n<p>Also to make any purchases, the user needs to setup payment first.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["purchasable"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[{"id":"0ddd7036-414c-4ff7-8f84-439b9b0ba461","name":"Get list of purchasables","originalRequest":{"method":"GET","header":[],"url":"{{baseUrl}}/purchasable"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Access-Control-Allow-Origin","value":"*"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Strict-Transport-Security","value":"max-age=15552000; includeSubDomains"},{"key":"X-Frame-Options","value":"SAMEORIGIN"},{"key":"X-XSS-Protection","value":"0"},{"key":"RateLimit-Limit","value":"1000"},{"key":"RateLimit-Remaining","value":"999"},{"key":"RateLimit-Reset","value":"10"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Length","value":"462"},{"key":"ETag","value":"W/\"1ce-2Gl6EUDw5rHP1FhIyobT+G3zub4\""},{"key":"Vary","value":"Accept-Encoding"},{"key":"Date","value":"Thu, 10 Mar 2022 07:32:44 GMT"},{"key":"Connection","value":"keep-alive"},{"key":"Keep-Alive","value":"timeout=5"}],"cookie":[],"responseTime":null,"body":"{\n    \"result\": \"success\",\n    \"data\": [\n        {\n            \"_id\": \"6228c0a91300ab90abfa825a\",\n            \"name\": \"Test purchasable\",\n            \"description\": \"Just for testing\",\n            \"options\": [\n                {\n                    \"_id\": \"6228c0a91300ab90abfa825b\",\n                    \"name\": \"Pay once\",\n                    \"price\": 100,\n                    \"interval\": \"once\"\n                },\n                {\n                    \"_id\": \"6228c0a91300ab90abfa825c\",\n                    \"name\": \"Pay monthly\",\n                    \"price\": 10,\n                    \"interval\": \"monthly\"\n                }\n            ],\n            \"createdAt\": \"2022-03-09T14:58:49.895Z\",\n            \"updatedAt\": \"2022-03-09T14:58:49.895Z\",\n            \"createdBy\": \"5f8d276d49dc2c17aadc6e92\",\n            \"updatedBy\": \"5f8d276d49dc2c17aadc6e92\"\n        }\n    ]\n}"}],"_postman_id":"864a6e8b-4186-44d4-a9db-7c0a0d0767c9"}],"id":"27652294-61ea-421c-932d-7b82a5d8009b","_postman_id":"27652294-61ea-421c-932d-7b82a5d8009b","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Conversations","item":[{"name":"Get public conversation","id":"6b980361-b8e1-426c-82de-75fe9f902026","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/conversation/public/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["conversation","public",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":null,"key":"id"}]}},"response":[],"_postman_id":"6b980361-b8e1-426c-82de-75fe9f902026"},{"name":"Like Conversation Entry","id":"99da9ffd-1985-4984-8714-b1e768651d2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"<string>","description":"<p>(Required) </p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"<ObjectID>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/conversation/like","description":"<p>Create a new item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["conversation","like"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"99da9ffd-1985-4984-8714-b1e768651d2b"},{"name":"Unlike Conversation Entry","id":"4b716138-3930-474d-9ffa-400f7bb72315","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"x-access-token","value":""},{"key":"Content-Type","value":"<string>","description":"<p>(Required) </p>\n"}],"body":{"mode":"raw","raw":"{\n\t\"id\": \"<ObjectID>\"\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/conversation/unlike","description":"<p>Create a new item</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["conversation","unlike"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b716138-3930-474d-9ffa-400f7bb72315"}],"id":"cc548d05-7ea3-421b-9c3f-29a11e04f090","_postman_id":"cc548d05-7ea3-421b-9c3f-29a11e04f090","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Features","item":[{"name":"Get list of features","id":"7fc1886a-bf67-412e-afba-516e4dee8d1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/feature","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["feature"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7fc1886a-bf67-412e-afba-516e4dee8d1d"}],"id":"24a2dfe5-eb64-42fe-993a-a61d9c8ec953","_postman_id":"24a2dfe5-eb64-42fe-993a-a61d9c8ec953","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Item Templates","item":[{"name":"Get list","id":"d69fb18b-6215-412a-ad34-42b26292bb01","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/itemtemplate/list","description":"<p>This call returns a list of all possible item templates. An item template defines the default contents of a newly created item, also a list of optional folders with content that will be created if the item is created. To use an item template, pass its ID as parameter when creating a new item.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["itemtemplate","list"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d69fb18b-6215-412a-ad34-42b26292bb01"}],"id":"3df62589-b2b4-4d0a-8adc-46595a661472","_postman_id":"3df62589-b2b4-4d0a-8adc-46595a661472","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Blogs","item":[{"name":"List Blogs","id":"dd192551-0eaf-4846-9b78-a0d1fe391467","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"dd192551-0eaf-4846-9b78-a0d1fe391467"},{"name":"Get Blog","id":"5e2b3826-e0a6-4044-a47b-03f135e947b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/:id","description":"<p>Get a single blog by ID. The blog needs to be accessible for the current user. A blog is accessible if the user is the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog to get</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[],"_postman_id":"5e2b3826-e0a6-4044-a47b-03f135e947b3"},{"name":"Get Public Blog","id":"59789b73-aa5d-4aad-807b-a0f7a2c406a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/:id/public","description":"<p>Get a single public blog by ID. The blog needs to have the public option set to true.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":id","public"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog to get</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[],"_postman_id":"59789b73-aa5d-4aad-807b-a0f7a2c406a3"},{"name":"Create Blog","id":"daf722c8-18be-4233-b96c-93e22472d850","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"New Blog\",\r\n    \"public\": false,\r\n    \"commentsEnabled\": true,\r\n    \"editors\": [\r\n        \"<UserObjectID>\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog","description":"<p>Create a new blog. The requesting user must be a client admin.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"daf722c8-18be-4233-b96c-93e22472d850"},{"name":"Update Blog","id":"f087d0c7-affa-4025-abe4-40e8d7f49295","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"<ObjectID>\",\r\n    \"name\": \"New Blog\",\r\n    \"public\": false,\r\n    \"commentsEnabled\": true,\r\n    \"editors\": [\r\n        \"<UserObjectID>\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog","description":"<p>Update an existing blog. The requesting user must be the owner of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f087d0c7-affa-4025-abe4-40e8d7f49295"},{"name":"Delete Blog","id":"5e58e6a8-e2b6-47ec-ae1b-0e634aec21ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"<ObjectID>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog","description":"<p>Delete a blog. The requesting user must be the owner of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5e58e6a8-e2b6-47ec-ae1b-0e634aec21ea"}],"id":"2c68d8f0-770c-4b46-a220-20ca3c0d23a5","_postman_id":"2c68d8f0-770c-4b46-a220-20ca3c0d23a5","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Blog Articles","item":[{"name":"List Articles","id":"bdceb23c-66cb-4728-b205-6bdd1a0b88e4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/:blogID","description":"<p>List all articles from a blog. The requesting user must be the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog from which to get the articles</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"}]}},"response":[],"_postman_id":"bdceb23c-66cb-4728-b205-6bdd1a0b88e4"},{"name":"Get Article","id":"cf20969a-4653-4194-8543-90f1e34da378","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/:blogID/:articleID","description":"<p>Get an article from a blog. The requesting user must be the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID",":articleID"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog from which to get the articles</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"},{"description":{"content":"<p>ID of the article to get</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"articleID"}]}},"response":[],"_postman_id":"cf20969a-4653-4194-8543-90f1e34da378"},{"name":"Get Article By Slug","id":"9b6ab9aa-172b-4362-a223-e6a20b4369d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/article/:blogID/:slug","description":"<p>Get an article from a blog. The requesting user must be the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog","article",":blogID",":slug"],"host":["{{baseUrl}}"],"query":[],"variable":[{"type":"any","value":"","key":"blogID"},{"type":"any","value":"","key":"slug"}]}},"response":[],"_postman_id":"9b6ab9aa-172b-4362-a223-e6a20b4369d6"},{"name":"Get Overview","id":"f9980527-37ca-4ea8-893c-b9cbb2c7553a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/:blogID/overview","description":"<p>This endpoint responds with the 8 most recent and 8 most popular articles in the specified blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID","overview"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog from which to get the articles</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"}]}},"response":[],"_postman_id":"f9980527-37ca-4ea8-893c-b9cbb2c7553a"},{"name":"Get Public Article","id":"962278e4-3449-4022-9aa7-26f254ecdd11","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/blog/:blogID/public/:articleID","description":"<p>Get a public article from a public blog. Both the blog and the article need to have the public flag set.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID","public",":articleID"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog from which to get the articles</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"},{"description":{"content":"<p>ID of the article to get</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"articleID"}]}},"response":[],"_postman_id":"962278e4-3449-4022-9aa7-26f254ecdd11"},{"name":"Create Article","id":"aa803b32-4581-48a3-9c1f-cdcda8833545","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"New Article\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog/:blogID/article","description":"<p>Create a new article in a blog. The requesting user must be the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID","article"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog in which to create an article</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"}]}},"response":[],"_postman_id":"aa803b32-4581-48a3-9c1f-cdcda8833545"},{"name":"Query Articles","id":"2b77ee81-ece6-428c-ad8b-115a12297776","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"tag\": \"Require the articles to include this exact tag\",\r\n    \"text\": \"Require the articles to contain this text in their content or title\",\r\n    \"limit\": \"Limit the amount of returned articles, min = 2, max = 24, default = 24\",\r\n    \"previousArticle\": \"publishedAt date of the previous article to get the next page of articles\",\r\n    \"searchTag\": \"Find all tags that include this substring\",\r\n    \"sortBy\": \"By default the list is sorted by publishing date, if this field is 'views', they will be sorted by amount of views instead\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog/:blogID/query","description":"<p>Search the articles in a blog.</p>\n<p>All keys in the query body object are optional!</p>\n<p>The response data will include two arrays<br />- <code>articles</code> a list of all articles that matched the search query<br />- <code>tags</code> a list of all tags that include the \"searchTag\" string. If \"searchTag\" isn't defined, this array is undefined.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID","query"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog in which to create an article</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"}]}},"response":[],"_postman_id":"2b77ee81-ece6-428c-ad8b-115a12297776"},{"name":"Update Article","id":"1648977c-74a1-4e93-910c-997a83012679","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"<ObjectID>\",\r\n    \"title\": \"New Article\",\r\n    \"content\": \"<XML code of the article content>\",\r\n    \"tags\": [\r\n        \"TagOne\",\r\n        \"TagTwo\"\r\n    ],\r\n    \"public\": true,\r\n    \"author\": \"<UserObjectID>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog/:blogID/article","description":"<p>Update an article in a blog. The requesting user must be the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID","article"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog in which to update an article</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"}]}},"response":[],"_postman_id":"1648977c-74a1-4e93-910c-997a83012679"},{"name":"Delete Article","id":"de752599-c862-4653-b13d-86797e24ae1c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"<ObjectID>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/blog/:blogID/article","description":"<p>Delete an article in a blog. The requesting user must be the owner or an editor of the blog.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["blog",":blogID","article"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the blog in which to delete an article</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"blogID"}]}},"response":[],"_postman_id":"de752599-c862-4653-b13d-86797e24ae1c"}],"id":"7b383f3b-5a00-4a08-8165-0d365c51221e","_postman_id":"7b383f3b-5a00-4a08-8165-0d365c51221e","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Newsletters","item":[{"name":"List Newsletters","id":"83f719c0-2c58-4fc6-b994-a552151819c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/newsletter","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"83f719c0-2c58-4fc6-b994-a552151819c8"},{"name":"Get Newsletter","id":"57c32d32-9cf5-41fc-9c2e-cbaa633b43d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/newsletter/:id","description":"<p>Client admins will also get an array of current subscribers.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the newsletter to get</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[],"_postman_id":"57c32d32-9cf5-41fc-9c2e-cbaa633b43d9"},{"name":"Create Newsletter","id":"70106d95-f20b-4972-b9bc-9e3a662aaa0e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"New Newsletter\",\r\n    \"editors\": [\r\n        \"<UserObjectID>\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/newsletter","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70106d95-f20b-4972-b9bc-9e3a662aaa0e"},{"name":"Update Newsletter","id":"d6ed4135-84a1-4bff-bae2-b6db98e3463d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"name\": \"Newsletter Name\",\r\n    \"editors\": [\r\n        \"<UserObjectID>\"\r\n    ]\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/newsletter/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the newsletter to update</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[],"_postman_id":"d6ed4135-84a1-4bff-bae2-b6db98e3463d"},{"name":"Delete Newsletter","id":"c8780ab3-1095-44f8-912e-6f4cab640c07","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"{{baseUrl}}/newsletter/:id","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>ID of the newsletter to delete</p>\n","type":"text/plain"},"type":"any","value":"<string>","key":"id"}]}},"response":[],"_postman_id":"c8780ab3-1095-44f8-912e-6f4cab640c07"},{"name":"Join Newsletter","id":"31532e8d-5e08-4a80-823f-4ab6e3fba604","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"id\": \"<NewsletterObjectID>\",\r\n    \"email\": \"email to subscribe to the newsletter\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/newsletter/join","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter","join"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"31532e8d-5e08-4a80-823f-4ab6e3fba604"},{"name":"Confirm Newsletter Subscribtion","id":"4a8e630c-6c29-48d2-97ae-256fbcc258ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"token\": \"secret token associated with the subscribtion\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/newsletter/confirm","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter","confirm"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4a8e630c-6c29-48d2-97ae-256fbcc258ea"},{"name":"Unsubscribe From Newsletter","id":"a98b89e6-03fd-4a79-9484-c0446cdde113","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"token\": \"secret token associated with the subscribtion\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/newsletter/unsubscribe","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["newsletter","unsubscribe"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a98b89e6-03fd-4a79-9484-c0446cdde113"}],"id":"73df16c1-6dcf-41b2-b867-1b4a97a550b2","_postman_id":"73df16c1-6dcf-41b2-b867-1b4a97a550b2","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"Pages","item":[{"name":"List Pages","id":"4f5da4e7-e575-4770-952c-5abbbbfee632","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/page","description":"<p>List all pages from the current client. Only accessible for users with the page_admin permission.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["page"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4f5da4e7-e575-4770-952c-5abbbbfee632"},{"name":"Create Page","id":"56b79577-f850-446f-a728-1edf1859965c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\r\n    \"title\": \"New Page\",\r\n    \"slug\": \"new-page\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/page","description":"<p>Create a new page in the current client. Only accessible for users with the page_admin permission.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["page"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"56b79577-f850-446f-a728-1edf1859965c"},{"name":"Update Page","id":"a6f135d8-990a-4453-ad45-25fe66e9f87d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"<ObjectID>\",\r\n    \"title\": \"New Page\",\r\n    \"slug\": \"new-page\",\r\n    \"public\": false,\r\n    \"content\": \"<content>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/page","description":"<p>Update an existing page in the current client. Only accessible for users with the page_admin permission.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["page"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"a6f135d8-990a-4453-ad45-25fe66e9f87d"},{"name":"Delete Page","id":"af7e9d64-e32f-444b-8ece-5be3b82c4936","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"body":{"mode":"raw","raw":"{\r\n    \"_id\": \"<ObjectID>\"\r\n}","options":{"raw":{"language":"json"}}},"url":"{{baseUrl}}/page","description":"<p>Delete a page in the current client. Only accessible for users with the page_admin permission.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["page"],"host":["{{baseUrl}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"af7e9d64-e32f-444b-8ece-5be3b82c4936"},{"name":"Get Page","id":"cc07c847-e1a2-4ac7-8a63-9d3666fb3c1d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/page/:id","description":"<p>Get a page from the current client. Only accessible for users with the page_admin permission.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["page",":id"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>The ID of the page to get.</p>\n","type":"text/plain"},"type":"any","value":"ObjectID","key":"id"}]}},"response":[],"_postman_id":"cc07c847-e1a2-4ac7-8a63-9d3666fb3c1d"},{"name":"Get Public Page","id":"9c480c2e-2c34-47a4-88c5-f63b6a21844c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/page/public/:clientID/:slug","description":"<p>Get a page from a specific client with a specific slug. Available for everyone.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["page","public",":clientID",":slug"],"host":["{{baseUrl}}"],"query":[],"variable":[{"description":{"content":"<p>The ID of the client from which to get a page.</p>\n","type":"text/plain"},"type":"any","value":"ObjectID","key":"clientID"},{"description":{"content":"<p>The slug of the page.</p>\n","type":"text/plain"},"type":"any","value":"String","key":"slug"}]}},"response":[],"_postman_id":"9c480c2e-2c34-47a4-88c5-f63b6a21844c"}],"id":"6b9c9bdb-e47e-415b-bc48-c199df55ad15","_postman_id":"6b9c9bdb-e47e-415b-bc48-c199df55ad15","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}},{"name":"EMail","item":[{"name":"Get Mail by Token","id":"4d96e30b-a848-49f1-9f24-13c581623987","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"{{baseUrl}}/email/get?token=abc","description":"<p>Returns the subject and html for an email.</p>\n","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}},"urlObject":{"path":["email","get"],"host":["{{baseUrl}}"],"query":[{"description":{"content":"<p>The JWT token from the email.</p>\n","type":"text/plain"},"key":"token","value":"abc"}],"variable":[]}},"response":[],"_postman_id":"4d96e30b-a848-49f1-9f24-13c581623987"}],"id":"76fa58c9-047c-48b1-a79c-fbf4e0d2bf05","_postman_id":"76fa58c9-047c-48b1-a79c-fbf4e0d2bf05","description":"","auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]},"isInherited":true,"source":{"_postman_id":"49874c54-d739-457a-8fb7-65d3a43e57c4","id":"49874c54-d739-457a-8fb7-65d3a43e57c4","name":"Lumino","type":"collection"}}}],"auth":{"type":"apikey","apikey":{"basicConfig":[{"key":"key","value":"x-access-token"},{"key":"value","value":"{{accesstoken}}"}]}},"event":[{"listen":"prerequest","script":{"id":"a61aebbd-d0c4-4209-90d1-ac96baaa81a9","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a4e6d377-65d5-4858-a8ae-35bf7dd73889","type":"text/javascript","exec":[""]}}]}