{"info":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","description":"<html><head></head><body><h1 id=\"introduction\">Introduction</h1>\n<p>The EisenVault API allows 3rd party applications to integrate with <a href=\"www.eisenvault.com\">EisenVault's Document Management System</a>. This allows the building of new use cases involving getting documents from EisenVault or pushing documents into EisenVault.</p>\n<h1 id=\"overview\">Overview</h1>\n<p>This is the main public API for interfacing your client application with EisenVault. This ReSTful API can be used to access On-Premise repositories and Cloud Repositories.</p>\n<p>The ReST API provides the ability to access core repository functionality, such as uploading a file, and Content Services-specific functionality, such as management of departments (also known as <strong>sites</strong>).</p>\n<h1 id=\"authentication\">Authentication</h1>\n<p>It's common to use HTTP basic authentication when trying out the ReST API. However, the basic auth mechanism provides no confidentiality protection for the transmitted credentials. They are merely encoded with Base64 in transit, but not encrypted or hashed in any way. Therefore, basic Authentication is typically used in conjunction with HTTPS to provide confidentiality.</p>\n<p>The ReST API also provides another way of authenticating with the repository. The APIs also support the ticket mechanism. You can POST the following body to </p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>https://yourinstance.com/alfresco/api/-default-/public/authentication/versions/1/tickets \n</code></pre><p>to create a new ticket:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{  \n  \"userId\": \"admin\",\n  \"password\": \"admin\" \n}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍\n</code></pre><p>The response provides the ticket in the id property:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{ \n   \"entry\": \n     { \n       \"id\": \"TICKET_ed4981b4bbb15fc2713f7caaffd23982d0dd4e5c\", \n       \"userId\": \"admin\" \n      } \n}‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍‍\n</code></pre><p>This ticket can then be used instead of a username and password. Although the ReST API supports the alf_ticket query parameter, we do not recommend using it, a more secure approach is to use a HTTP header. The basic auth mechanism is still used i.e. sending an Authorisation header. However, the base64 encoded username/password is replaced with the base64 encoded ticket.</p>\n<h1 id=\"error-codes\">Error Codes</h1>\n<ul>\n<li><strong>400</strong> Invalid parameter</li>\n<li><strong>401</strong> Authentication failed</li>\n<li><strong>default</strong> Unexpected error</li>\n</ul>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[{"content":"Introduction","slug":"introduction"},{"content":"Overview","slug":"overview"},{"content":"Authentication","slug":"authentication"},{"content":"Error Codes","slug":"error-codes"}],"owner":"5681170","collectionId":"12548d06-2190-4b19-9f47-949a85a77bb9","publishedId":"SzmY9M59","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-04-30T10:10:52.000Z"},"item":[{"name":"Department / Site Management","item":[{"name":"List All Departments","id":"6ce62d26-f55e-40a2-a17a-1c4eb9bd9be5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://demo.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/-root-/children","description":"<p>Gets a list of sites (Departments) in this repository.</p>\n<p>You can use the <strong>where</strong> parameter to filter the returned sites by visibility or site preset.</p>\n<p>Example to filter by visibility, use any one of:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>(visibility='PRIVATE')\n(visibility='PUBLIC')\n(visibility='MODERATED')\n</code></pre><p>Example to filter by site preset:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>(preset='site-dashboard')\n</code></pre><p>The default sort order for the returned list is for sites to be sorted by ascending title. You can override the default by using the orderBy parameter. You can specify one or more of the following fields in the <strong>orderBy</strong> parameter:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>    id\n    title\n    description\n</code></pre><p>You can use the <strong>relations</strong> parameter to include one or more related entities in a single response and so reduce network traffic.</p>\n<p>The entity types in EisenVault are organized in a tree structure. The sites entity has two children, containers and members. The following relations parameter returns all the container and member objects related to each site:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>containers,members\n</code></pre>","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","-root-","children"],"host":["demo","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"11576154-5762-43ca-8bc5-700b09526ad5","name":"List All Departments","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":"https://systest.eisenvault.net//alfresco/api/-default-/public/alfresco/versions/1/sites"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 09:44:03 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"},{"key":"Transfer-Encoding","value":"chunked"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 55,\n            \"hasMoreItems\": false,\n            \"totalItems\": 55,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"05490422-245e-49f0-84ce-1e3c7558aabb\",\n                    \"id\": \"webinar\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Accounts\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PUBLIC\",\n                    \"guid\": \"ec35aefa-39b8-4b74-b5e8-d74b0504b17e\",\n                    \"id\": \"api-test-site\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"api-test-site\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"869ea32d-808b-4866-9ecd-7fda114b2db9\",\n                    \"id\": \"bangladesh-trial\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Bangladesh Trial\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"d2944d53-c5dc-4e7a-a7a5-8e5e8893a24c\",\n                    \"id\": \"cah-group-testing\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"CAH Group Testing\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"3de6478a-f626-46c6-9688-f83670339a96\",\n                    \"id\": \"cah-sample\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"CAH SAMPLE\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PUBLIC\",\n                    \"guid\": \"0dae572d-7ae1-4625-b708-bee5c8279378\",\n                    \"id\": \"cinnamon\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Cinnamon\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"bbfa510c-321a-4b77-8ad5-dd4186c3652e\",\n                    \"id\": \"corporate-office\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Corporate office\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"641f215b-428b-47df-ad88-635cfbcea1f9\",\n                    \"id\": \"daiknow\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Daiknow\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"12b4f8ac-044c-42f5-b7b5-452e57ee0430\",\n                    \"description\": \"Deepti Demo\",\n                    \"id\": \"deepti\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Deepti\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"8495f0f3-0fac-421c-943e-91b6012974e2\",\n                    \"description\": \"Demo by Deepti\",\n                    \"id\": \"DP\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Deepti Travels\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"204e0b17-d120-4aee-8824-83ed33c39a56\",\n                    \"id\": \"drawing\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Design - Drawing\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PUBLIC\",\n                    \"guid\": \"9ce9b8e4-40c7-4404-a3fc-20fc6423af5b\",\n                    \"id\": \"e-book\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"e-book\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"13fe5493-cdf2-4432-9674-1c2738615f8e\",\n                    \"id\": \"eisenlens\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"EisenLens\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"30a525de-4bc0-4757-b5d1-25efc7702c01\",\n                    \"id\": \"test\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"EisenVault Sync\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"b018babb-5fdc-480f-bfd7-a91acb60b150\",\n                    \"id\": \"elite-hr\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Elite HR\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"eef60196-51ad-4202-a73a-41e50d0cadae\",\n                    \"id\": \"employee-records\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Employee Records\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"56153f4e-ed5a-431d-8106-4d14b4490c65\",\n                    \"description\": \"Invoices, Sales, Purchases\",\n                    \"id\": \"freshworks-accounts\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Freshworks Accounts\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"56e4278e-350a-4c5a-8d73-57459d81103d\",\n                    \"description\": \"All Employee Records and Policies \",\n                    \"id\": \"freshworks-hr\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Freshworks HR\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"9b370005-367c-4570-89e8-762f009d92fb\",\n                    \"description\": \"Department for Infosec\",\n                    \"id\": \"freshworks-infosec\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Freshworks Infosec\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"29bd0fcf-0225-4c4c-b2e0-e0fedc01a4f2\",\n                    \"description\": \"Contracts, Agreements related\",\n                    \"id\": \"freshworks-legal\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Freshworks Legal\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"ad7c1a31-b9cb-4b46-b010-b54b105419e6\",\n                    \"description\": \"Dubai\",\n                    \"id\": \"fyn-accounting\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"FYN Accounting\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"8fa8ee2b-3ee2-41c8-8bca-041f50b67c93\",\n                    \"id\": \"honda2wheelers-india\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Honda2wheelers India\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"e7332e26-69c0-4abc-aa3c-8cbc7b426a5d\",\n                    \"id\": \"hplab\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"HPLAB\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"c76299b6-b4eb-4791-87c6-f6eedae338fb\",\n                    \"id\": \"abc\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"HR\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"a05c6cb8-6b22-446e-9d23-164f824ccb28\",\n                    \"id\": \"HRTest\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"HR Test\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"2496c5f3-e106-4d8f-a906-088a2102e358\",\n                    \"id\": \"iffco\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"IFFCO\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"8b50f84b-f275-4f0a-b1fa-e3900c15b175\",\n                    \"id\": \"ims\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"IMS\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"3bc6f2c4-0ac9-4f72-bef4-39cd4a431de5\",\n                    \"id\": \"workflow\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"IT\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"0695c662-b260-443f-9e11-04357b60af56\",\n                    \"id\": \"maker-checker\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"maker checker\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"fc66ace7-2928-4537-9135-d056a99f6cb3\",\n                    \"id\": \"maker-checker-test\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"maker-checker-test\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"f3291c61-bd01-4a65-b2b7-a5530cd58a87\",\n                    \"id\": \"malaysia-hospitals\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Malaysia Hospitals\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"c1f63e6a-fbaf-48f3-85e7-28d9e1e596cb\",\n                    \"description\": \"Don't delete anything in it\",\n                    \"id\": \"manish---demo-purple\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Manish - Demo Purposes\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"5eb17718-37ad-4f9e-a931-6a60f230e1b2\",\n                    \"id\": \"ntpc-dadri\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"NTPC-Dadri\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"d4bc7bd6-e33e-47a6-8362-eb5380ca6786\",\n                    \"id\": \"karam---office-testing\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"ONLYOffice testing\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"7c184e58-6687-4fdb-b1e8-d3593739b6d1\",\n                    \"id\": \"prime-group\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Prime Group\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"fb4fa432-6c82-49ef-bc0b-14a52834db1f\",\n                    \"id\": \"shrachi-demo\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Shrachi Demo\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"3d890420-4dfa-4b66-8a08-d2f69e811635\",\n                    \"id\": \"slcm\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"SLCM\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"2d8f3d47-0c72-4a4f-a375-123ebeb74370\",\n                    \"id\": \"soubhik\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Soubhik\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"bce383dc-4961-4ad2-a1f8-ccd6fa2ff30f\",\n                    \"description\": \"Document Management\",\n                    \"id\": \"spn\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"SPN \"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"170c16be-6451-4e81-a7cf-0fc5f296ea32\",\n                    \"id\": \"springfield-nuclear-7g\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Springfield Nuclear 7G\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"22605444-6fde-4d85-8a2c-b2aff8929829\",\n                    \"description\": \"For testing EisenLens uploads\",\n                    \"id\": \"springfieldnuclear\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"springfieldnuclear\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"33268e78-9d42-4ac7-a3c9-bc28012a18ae\",\n                    \"id\": \"staff\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Staff Records\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"bf982938-a13f-4fa8-8537-355b3b4c204e\",\n                    \"id\": \"student\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Student Records\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"1a2c0aaf-70bf-4b86-9e34-d8c09b3a5da2\",\n                    \"id\": \"sudharshan-jayakumar---chennai\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Sudharshan Jayakumar - Chennai\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"b21318c5-f767-4b66-b13f-cb30d33545a0\",\n                    \"id\": \"tata-capital\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Tata Capital\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PUBLIC\",\n                    \"guid\": \"30183adc-f5b7-48f3-afd6-5df1439a8aa1\",\n                    \"description\": \"Testing Purpose\",\n                    \"id\": \"atest\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Test\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"69252469-470e-487c-b478-5add1b4b8812\",\n                    \"id\": \"testtemplates\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Test_Templates\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"a56af2c5-39ce-4788-abce-a352a19b8402\",\n                    \"id\": \"test-2019\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Test 2019\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"ce51d481-4769-4ebe-b85e-d8eb5be8e3fc\",\n                    \"description\": \"To write test usecases\",\n                    \"id\": \"test12\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Test12\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"9682430c-872b-4b48-8c6b-124b2086853c\",\n                    \"id\": \"test123\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"test123\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"2f13acde-dafc-4347-a932-92b6e765a99f\",\n                    \"id\": \"test2020\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Test2020\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"bfeb87b3-0944-41c4-b0a2-bfe1f50bf0de\",\n                    \"id\": \"uk-hr\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"UK HR\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"85607917-f962-47fc-85dc-2f9b07af9ca1\",\n                    \"id\": \"v-ensurefrd\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"V-Ensure_FRD\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"626b51f7-9f12-40ff-8529-8a68d45b1188\",\n                    \"id\": \"v-ensure-hr\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"V-Ensure-HR\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"b999cb6c-4ad0-4cb8-9d6b-0f1f97ac7089\",\n                    \"id\": \"v-ensure-qa\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"V-ensure-QA\"\n                }\n            }\n        ]\n    }\n}"},{"id":"ce866788-d569-4209-992c-db2f43542b52","name":"List All Departments","originalRequest":{"method":"GET","header":[],"body":{"mode":"raw","raw":""},"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites?skipCount=0&maxItems=5","protocol":"https","host":["systest","eisenvault","net"],"path":["","alfresco","api","-default-","public","alfresco","versions","1","sites"],"query":[{"key":"skipCount","value":"0","description":"The number of entities that exist in the collection before those included in this list. If not supplied then the default value is 0. Data Type: Integer"},{"key":"maxItems","value":"5","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"},{"key":"orderBy","value":null,"type":"text","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 10:21:36 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"971"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 5,\n            \"hasMoreItems\": true,\n            \"totalItems\": 55,\n            \"skipCount\": 0,\n            \"maxItems\": 5\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"05490422-245e-49f0-84ce-1e3c7558aabb\",\n                    \"id\": \"webinar\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Accounts\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PUBLIC\",\n                    \"guid\": \"3cb1ff0d-4215-4c08-98c7-ba98115bfb00\",\n                    \"id\": \"api-test-site\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"api-test-site\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"869ea32d-808b-4866-9ecd-7fda114b2db9\",\n                    \"id\": \"bangladesh-trial\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Bangladesh Trial\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"d2944d53-c5dc-4e7a-a7a5-8e5e8893a24c\",\n                    \"id\": \"cah-group-testing\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"CAH Group Testing\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"3de6478a-f626-46c6-9688-f83670339a96\",\n                    \"id\": \"cah-sample\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"CAH SAMPLE\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"6ce62d26-f55e-40a2-a17a-1c4eb9bd9be5"},{"name":"Create A Department","id":"98eb4288-9ebb-4496-8085-1f8e423aa1ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":""},"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites?skipConfiguration=false&skipAddToFavorites=true","description":"<p>Creates a default site (also known as <strong>department</strong>) with the given details. Unless explicitly specified, the site id will be generated from the site title. The site id must be unique and only contain alphanumeric and/or dash characters.</p>\n<p>Note: the id of a site cannot be updated once the site has been created.</p>\n<p>For example, to create a public site called \"Marketing\" the following body could be used:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"title\": \"Marketing\",\n  \"visibility\": \"PUBLIC\"\n}\n</code></pre><p>The addition of the site to the user's site favorites can be skipped via the <strong>skipAddToFavorites</strong> query parameter.</p>\n<p>The creator will be added as a member with <strong>Site Manager</strong> role.</p>\n<p>When you create a site, a container called <strong>documentLibrary</strong> is created for you in the new site. This container is the root folder for content stored in the site.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["","alfresco","api","-default-","public","alfresco","versions","1","sites"],"host":["systest","eisenvault","net"],"query":[{"description":{"content":"<p>Flag to indicate whether the Share-specific configuration files for the site should not be created. Type: Boolean.</p>\n","type":"text/plain"},"key":"skipConfiguration","value":"false"},{"description":{"content":"<p>Flag to indicate whether the site should not be added to the user's site favorites. Default: false</p>\n","type":"text/plain"},"key":"skipAddToFavorites","value":"true"}],"variable":[]}},"response":[{"id":"5f1adbaa-8e30-4943-b93a-67ed1b755196","name":"Create A Department","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"api-test-site\",\n  \"visibility\": \"PUBLIC\"\n}"},"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites?skipConfiguration=false&skipAddToFavorites=true","protocol":"https","host":["systest","eisenvault","net"],"path":["","alfresco","api","-default-","public","alfresco","versions","1","sites"],"query":[{"key":"skipConfiguration","value":"false","description":"Flag to indicate whether the Share-specific configuration files for the site should not be created. Type: Boolean."},{"key":"skipAddToFavorites","value":"true","description":"Flag to indicate whether the site should not be added to the user's site favorites. Default: false"}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 10:05:35 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"171"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"role\": \"SiteManager\",\n        \"visibility\": \"PUBLIC\",\n        \"guid\": \"3cb1ff0d-4215-4c08-98c7-ba98115bfb00\",\n        \"id\": \"api-test-site\",\n        \"preset\": \"site-dashboard\",\n        \"title\": \"api-test-site\"\n    }\n}"},{"id":"dd59539c-075b-46f8-bd7e-d42e9b7143eb","name":"Create A Department","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"title\": \"api-test-site\",\n  \"visibility\": \"PUBLIC\"\n}"},"url":"https://systest.eisenvault.net//alfresco/api/-default-/public/alfresco/versions/1/sites"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 09:41:48 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"171"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"role\": \"SiteManager\",\n        \"visibility\": \"PUBLIC\",\n        \"guid\": \"ec35aefa-39b8-4b74-b5e8-d74b0504b17e\",\n        \"id\": \"api-test-site\",\n        \"preset\": \"site-dashboard\",\n        \"title\": \"api-test-site\"\n    }\n}"}],"_postman_id":"98eb4288-9ebb-4496-8085-1f8e423aa1ea"},{"name":"List Site Memberships","id":"48c02798-e392-4e93-a86d-23eca92b1012","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites/springfield-nuclear-7g/members?siteId=springfield-nuclear-7g&skipCount=0&maxItems=100","description":"<p>Gets a list of site memberships for site <strong>siteId</strong>.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","sites","springfield-nuclear-7g","members"],"host":["systest","eisenvault","net"],"query":[{"description":{"content":"<p>The identifier of a site. Data Type: String</p>\n","type":"text/plain"},"key":"siteId","value":"springfield-nuclear-7g"},{"description":{"content":"<p>The number of entities that exist in the collection before those included in this list. If not supplied then the default value is 0. Data Type: Integer.</p>\n","type":"text/plain"},"key":"skipCount","value":"0"},{"description":{"content":"<p>The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer</p>\n","type":"text/plain"},"key":"maxItems","value":"100"}],"variable":[]}},"response":[{"id":"66b57f0c-73d7-407a-8d04-23bddd1d4c20","name":"List Site Memberships","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites/springfield-nuclear-7g/members?siteId=springfield-nuclear-7g&skipCount=0&maxItems=100","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","sites","springfield-nuclear-7g","members"],"query":[{"key":"siteId","value":"springfield-nuclear-7g","description":"The identifier of a site. Data Type: String"},{"key":"skipCount","value":"0","description":"The number of entities that exist in the collection before those included in this list. If not supplied then the default value is 0. Data Type: Integer."},{"key":"maxItems","value":"100","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 13:37:06 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"2631"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 9,\n            \"hasMoreItems\": false,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"person\": {\n                        \"aspectNames\": [\n                            \"rc:remoteCredentialsSystemContainer\"\n                        ],\n                        \"firstName\": \"Administrator\",\n                        \"quotaUsed\": 3446807919,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"admin\",\n                        \"enabled\": true,\n                        \"email\": \"rajesh.barnwal@eisenvault.com\"\n                    },\n                    \"id\": \"admin\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteCollaborator\",\n                    \"person\": {\n                        \"firstName\": \"Dummy\",\n                        \"lastName\": \"admin\",\n                        \"quotaUsed\": 387348,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"dummy.admin\",\n                        \"enabled\": true,\n                        \"email\": \"vipul@eisenvault.com\"\n                    },\n                    \"id\": \"dummy.admin\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteViewer\",\n                    \"person\": {\n                        \"firstName\": \"Monty\",\n                        \"lastName\": \"Burns\",\n                        \"quotaUsed\": 0,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"monty.burns\",\n                        \"enabled\": true,\n                        \"email\": \"vipulswarup+burns@gmail.com\"\n                    },\n                    \"id\": \"monty.burns\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteCollaborator\",\n                    \"person\": {\n                        \"firstName\": \"Carl\",\n                        \"lastName\": \"Carlson\",\n                        \"avatarId\": \"2df04631-bcbe-4fdb-8b6d-0b067490aaaa\",\n                        \"quotaUsed\": 405337012,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"carl.carlson\",\n                        \"enabled\": true,\n                        \"email\": \"vipulswarup+carl@gmail.com\"\n                    },\n                    \"id\": \"carl.carlson\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"person\": {\n                        \"firstName\": \"Jigme\",\n                        \"lastName\": \"Lachungpa\",\n                        \"quotaUsed\": 0,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"jigme.lachungpa\",\n                        \"enabled\": true,\n                        \"email\": \"jigme476@gmail.com\"\n                    },\n                    \"id\": \"jigme.lachungpa\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteConsumer\",\n                    \"person\": {\n                        \"firstName\": \"Lenny\",\n                        \"lastName\": \"Leonard\",\n                        \"avatarId\": \"0d53ce5c-bf57-4813-ba25-199159563b61\",\n                        \"quotaUsed\": 9718,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"lenny.leonard\",\n                        \"enabled\": true,\n                        \"email\": \"vipulswarup+lenny@gmail.com\"\n                    },\n                    \"id\": \"lenny.leonard\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"person\": {\n                        \"firstName\": \"Pranav\",\n                        \"lastName\": \"Sachdeva\",\n                        \"quotaUsed\": 400875,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"pranav.sachdeva\",\n                        \"enabled\": true,\n                        \"email\": \"pranav.59.2021@doonschool.com\"\n                    },\n                    \"id\": \"pranav.sachdeva\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteContributor\",\n                    \"person\": {\n                        \"firstName\": \"Homer\",\n                        \"lastName\": \"Simpson\",\n                        \"avatarId\": \"5df7f236-3205-4e45-a744-7b79d1995a02\",\n                        \"quotaUsed\": 2001450,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"homer.simpson\",\n                        \"enabled\": true,\n                        \"email\": \"vipulswarup+homer@gmail.com\"\n                    },\n                    \"id\": \"homer.simpson\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"person\": {\n                        \"firstName\": \"Waylan\",\n                        \"lastName\": \"Smithers\",\n                        \"avatarId\": \"74399b4f-6999-438a-b51f-de77bc3ab287\",\n                        \"quotaUsed\": 22659480,\n                        \"quota\": -1,\n                        \"emailNotificationsEnabled\": true,\n                        \"company\": {},\n                        \"id\": \"waylan.smithers\",\n                        \"enabled\": true,\n                        \"email\": \"vipulswarup+smithers@gmail.com\"\n                    },\n                    \"id\": \"waylan.smithers\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"48c02798-e392-4e93-a86d-23eca92b1012"},{"name":"Delete a Site/Department","id":"a5562cf8-a3d6-41d2-9012-f9de972d91e2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites/api-test-site?siteId=api-test-site&permanent=false","description":"<p>Deletes the site with <strong>siteId</strong>.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["","alfresco","api","-default-","public","alfresco","versions","1","sites","api-test-site"],"host":["systest","eisenvault","net"],"query":[{"description":{"content":"<p>The identifier of a site. Data Type: String</p>\n","type":"text/plain"},"key":"siteId","value":"api-test-site"},{"description":{"content":"<p>Flag to indicate whether the site should be permanently deleted i.e. bypass the trashcan. Data Type: Boolian</p>\n","type":"text/plain"},"key":"permanent","value":"false"}],"variable":[]}},"response":[{"id":"f04755c6-e3b6-465f-ac54-98fd226aecce","name":"Delete a Site/Department","originalRequest":{"method":"DELETE","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/sites/api-test-site?siteId=api-test-site&permanent=false","protocol":"https","host":["systest","eisenvault","net"],"path":["","alfresco","api","-default-","public","alfresco","versions","1","sites","api-test-site"],"query":[{"key":"siteId","value":"api-test-site","description":"The identifier of a site. Data Type: String"},{"key":"permanent","value":"false","description":"Flag to indicate whether the site should be permanently deleted i.e. bypass the trashcan. Data Type: Boolian"}]}},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 13:37:50 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"a5562cf8-a3d6-41d2-9012-f9de972d91e2"}],"id":"189b576a-981c-4b1c-839b-711c5482f5f9","_postman_id":"189b576a-981c-4b1c-839b-711c5482f5f9","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Search","item":[{"name":"Find Nodes (Documents, Folders, Sites)","id":"c80be9a0-47e2-4d45-a161-8dd0cf83ea16","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/nodes","description":"<p>Gets a list of nodes that match the given search criteria.</p>\n<p>The search term is used to look for nodes that match against name, title, description, full text content or tags.</p>\n<p>The search term:</p>\n<ul>\n<li>must contain a minimum of 3 alphanumeric characters</li>\n<li>allows \"quoted term\"</li>\n<li>can optionally use '*' for wildcard matching</li>\n</ul>\n<p>By default, file and folder types will be searched unless a specific type is provided as a query parameter.</p>\n<p>By default, the search will be across the repository unless a specific root node id is provided to start the search from.</p>\n<p>You can sort the result list using the orderBy parameter. You can specify one or more of the following fields in the orderBy parameter:</p>\n<ul>\n<li>name</li>\n<li>modifiedAt</li>\n<li>createdAt</li>\n</ul>\n","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","queries","nodes"],"host":["systest","eisenvault","net"],"query":[{"disabled":true,"description":{"content":"<p>The id of the node to start the search from.</p>\n<p>Supports the aliases -my-, -root- and -shared-.</p>\n<p>Data Type: String</p>\n","type":"text/plain"},"key":"rootNodeId","value":"-root-"},{"disabled":true,"description":{"content":"<p>The number of entities that exist in the collection before those included in this list. If not supplied then the default value is 0. Data Type: String</p>\n","type":"text/plain"},"key":"skipCount","value":"0"},{"disabled":true,"description":{"content":"<p>Restrict the returned results to only those of the given node type and its sub-types. Data Type: String</p>\n","type":"text/plain"},"key":"nodeType","value":null},{"disabled":true,"description":{"content":"<p>Returns additional information about the node. The following optional fields can be requested:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>allowableOperations\naspectNames\nisLink\nisFavorite\nisLocked\npath\nproperties\n</code></pre><p>Data Type: Array[string]</p>\n","type":"text/plain"},"key":"include","value":null},{"disabled":true,"description":{"content":"<p>A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.</p>\n<p>Each field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.</p>\n<p>To sort the entities in a specific order, you can use the ASC and DESC keywords for any field.</p>\n<p>Data Type: Array[string]</p>\n","type":"text/plain"},"key":"orderBy","value":null},{"disabled":true,"description":{"content":"<p>A list of field names.</p>\n<p>You can use this parameter to restrict the fields returned within a response if, for example, you want to save on overall bandwidth.</p>\n<p>The list applies to a returned individual entity or entries within a collection.</p>\n<p>If the API method also supports the include parameter, then the fields specified in the include parameter are returned in addition to those specified in the fields parameter.</p>\n<p>Data Type: String</p>\n","type":"text/plain"},"key":"fields","value":null}],"variable":[]}},"response":[{"id":"be155ef1-5857-483b-af6d-b0bd3ff81f70","name":"Find Nodes (Documents, Folders, Sites)","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/nodes?term=search term&maxItems=2","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","queries","nodes"],"query":[{"key":"term","value":"search term","description":"The term to search for. Data Type: String"},{"key":"rootNodeId","value":"-root-","description":"The id of the node to start the search from.\n\nSupports the aliases -my-, -root- and -shared-.\n\nData Type: String","disabled":true},{"key":"skipCount","value":"0","description":"The number of entities that exist in the collection before those included in this list. If not supplied then the default value is 0. Data Type: String","disabled":true},{"key":"maxItems","value":"2","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"},{"key":"nodeType","value":null,"description":"Restrict the returned results to only those of the given node type and its sub-types. Data Type: String","disabled":true},{"key":"include","value":null,"description":"Returns additional information about the node. The following optional fields can be requested:\n\n    allowableOperations\n    aspectNames\n    isLink\n    isFavorite\n    isLocked\n    path\n    properties\nData Type: Array[string]","disabled":true},{"key":"orderBy","value":null,"description":"A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\n\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\n\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\n\nData Type: Array[string]","disabled":true},{"key":"fields","value":null,"description":"A list of field names.\n\nYou can use this parameter to restrict the fields returned within a response if, for example, you want to save on overall bandwidth.\n\nThe list applies to a returned individual entity or entries within a collection.\n\nIf the API method also supports the include parameter, then the fields specified in the include parameter are returned in addition to those specified in the fields parameter.\n\nData Type: String","disabled":true}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 13:53:46 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"1101"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 2,\n            \"hasMoreItems\": true,\n            \"totalItems\": 102,\n            \"skipCount\": 0,\n            \"maxItems\": 2\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"createdAt\": \"2020-04-30T04:45:08.878+0000\",\n                    \"isFolder\": false,\n                    \"isFile\": true,\n                    \"createdByUser\": {\n                        \"id\": \"System\",\n                        \"displayName\": \"System\"\n                    },\n                    \"modifiedAt\": \"2020-04-30T04:45:08.878+0000\",\n                    \"modifiedByUser\": {\n                        \"id\": \"System\",\n                        \"displayName\": \"System\"\n                    },\n                    \"name\": \"eisenvault-password-expire.js\",\n                    \"id\": \"93315da7-85e3-4490-9ec0-49d87df2ad2e\",\n                    \"nodeType\": \"cm:content\",\n                    \"content\": {\n                        \"mimeType\": \"text/plain\",\n                        \"mimeTypeName\": \"Plain Text\",\n                        \"sizeInBytes\": 6442,\n                        \"encoding\": \"UTF-8\"\n                    },\n                    \"parentId\": \"39bb3efe-f57e-4cab-a980-1b30aa3f3a85\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"createdAt\": \"2020-04-30T04:44:54.378+0000\",\n                    \"isFolder\": false,\n                    \"isFile\": true,\n                    \"createdByUser\": {\n                        \"id\": \"System\",\n                        \"displayName\": \"System\"\n                    },\n                    \"modifiedAt\": \"2020-04-30T04:44:54.378+0000\",\n                    \"modifiedByUser\": {\n                        \"id\": \"System\",\n                        \"displayName\": \"System\"\n                    },\n                    \"name\": \"share-link-expiry.js\",\n                    \"id\": \"5cafa65a-2f58-4209-99bb-f2e55b0c0a08\",\n                    \"nodeType\": \"cm:content\",\n                    \"content\": {\n                        \"mimeType\": \"text/plain\",\n                        \"mimeTypeName\": \"Plain Text\",\n                        \"sizeInBytes\": 874,\n                        \"encoding\": \"UTF-8\"\n                    },\n                    \"parentId\": \"39bb3efe-f57e-4cab-a980-1b30aa3f3a85\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"c80be9a0-47e2-4d45-a161-8dd0cf83ea16"},{"name":"Find People","id":"03ffac6b-0261-4a0d-93f6-cafa1997145d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/people?term=in&maxItems=3&orderBy=firstName ASC","description":"<p>Gets a list of people that match the given search criteria.</p>\n<p>The search term is used to look for matches against person id, firstname and lastname.</p>\n<p>The search term:</p>\n<ul>\n<li>must contain a minimum of 2 alphanumeric characters</li>\n<li>can optionally use '*' for wildcard matching within the term</li>\n</ul>\n<p>You can sort the result list using the <strong>orderBy</strong> parameter. You can specify one or more of the following fields in the <strong>orderBy</strong> parameter:</p>\n<ul>\n<li>id</li>\n<li>firstName</li>\n<li>lastName</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"19b15c83-bd91-49dd-a5da-6b9076da6e1e","id":"19b15c83-bd91-49dd-a5da-6b9076da6e1e","name":"Search","type":"folder"}},"urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","queries","people"],"host":["systest","eisenvault","net"],"query":[{"description":{"content":"<p>The term to search for. Data Type: String</p>\n","type":"text/plain"},"key":"term","value":"in"},{"description":{"content":"<p>The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer</p>\n","type":"text/plain"},"key":"maxItems","value":"3"},{"description":{"content":"<p>A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.</p>\n<p>Each field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.</p>\n<p>To sort the entities in a specific order, you can use the ASC and DESC keywords for any field.</p>\n<p>Data Type: String</p>\n","type":"text/plain"},"key":"orderBy","value":"firstName ASC"}],"variable":[]}},"response":[{"id":"b7d7f2d0-1ea6-44f4-be1b-7612953b02d1","name":"Find People","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/people?term=in&maxItems=3&orderBy=firstName ASC","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","queries","people"],"query":[{"key":"term","value":"in","description":"The term to search for. Data Type: String"},{"key":"maxItems","value":"3","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"},{"key":"orderBy","value":"firstName ASC","description":"A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\n\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\n\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\n\nData Type: String"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:04:16 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"787"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 3,\n            \"hasMoreItems\": true,\n            \"totalItems\": 16,\n            \"skipCount\": 0,\n            \"maxItems\": 3\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"firstName\": \"aavin\",\n                    \"lastName\": \"srinivasan\",\n                    \"quotaUsed\": 0,\n                    \"quota\": 5368709120,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"aavin.srinivasan\",\n                    \"enabled\": true,\n                    \"email\": \"aavin.srinivasan@freshworks.com\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"aspectNames\": [\n                        \"rc:remoteCredentialsSystemContainer\"\n                    ],\n                    \"firstName\": \"Administrator\",\n                    \"quotaUsed\": 3446807919,\n                    \"quota\": -1,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"admin\",\n                    \"enabled\": true,\n                    \"email\": \"rajesh.barnwal@eisenvault.com\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"firstName\": \"Anurag\",\n                    \"lastName\": \"Singh\",\n                    \"quotaUsed\": 0,\n                    \"quota\": 5368709120,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"anurag.singh@freshworks.com\",\n                    \"enabled\": true,\n                    \"email\": \"anurag.singh@freshworks.com\"\n                }\n            }\n        ]\n    }\n}"},{"id":"c5e338a5-9b72-4bd9-b924-6c4e8763f582","name":"Find People","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/people?term=in&maxItems=3&orderBy=firstName ASC","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","queries","people"],"query":[{"key":"term","value":"in","description":"The term to search for. Data Type: String"},{"key":"maxItems","value":"3","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"},{"key":"orderBy","value":"firstName ASC","description":"A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\n\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\n\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\n\nData Type: String"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:04:16 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"787"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 3,\n            \"hasMoreItems\": true,\n            \"totalItems\": 16,\n            \"skipCount\": 0,\n            \"maxItems\": 3\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"firstName\": \"aavin\",\n                    \"lastName\": \"srinivasan\",\n                    \"quotaUsed\": 0,\n                    \"quota\": 5368709120,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"aavin.srinivasan\",\n                    \"enabled\": true,\n                    \"email\": \"aavin.srinivasan@freshworks.com\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"aspectNames\": [\n                        \"rc:remoteCredentialsSystemContainer\"\n                    ],\n                    \"firstName\": \"Administrator\",\n                    \"quotaUsed\": 3446807919,\n                    \"quota\": -1,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"admin\",\n                    \"enabled\": true,\n                    \"email\": \"rajesh.barnwal@eisenvault.com\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"firstName\": \"Anurag\",\n                    \"lastName\": \"Singh\",\n                    \"quotaUsed\": 0,\n                    \"quota\": 5368709120,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"anurag.singh@freshworks.com\",\n                    \"enabled\": true,\n                    \"email\": \"anurag.singh@freshworks.com\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"03ffac6b-0261-4a0d-93f6-cafa1997145d"},{"name":"Find Sites","id":"1bb96233-a717-4d6a-90a3-2a9cbc6aa75d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/sites?term=spring&maxItems=3&orderBy=title ASC","description":"<p>Gets a list of sites that match the given search criteria.</p>\n<p>The search term is used to look for sites that match against site id, title or description.</p>\n<p>The search term:</p>\n<ul>\n<li>must contain a minimum of 2 alphanumeric characters</li>\n<li>can optionally use '*' for wildcard matching within the term</li>\n</ul>\n<p>The default sort order for the returned list is for sites to be sorted by ascending id. You can override the default by using the orderBy parameter. You can specify one or more of the following fields in the orderBy parameter:</p>\n<ul>\n<li>id</li>\n<li>title</li>\n<li>description</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"19b15c83-bd91-49dd-a5da-6b9076da6e1e","id":"19b15c83-bd91-49dd-a5da-6b9076da6e1e","name":"Search","type":"folder"}},"urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","queries","sites"],"host":["systest","eisenvault","net"],"query":[{"description":{"content":"<p>The term to search for. Data Type: String</p>\n","type":"text/plain"},"key":"term","value":"spring"},{"description":{"content":"<p>The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer</p>\n","type":"text/plain"},"key":"maxItems","value":"3"},{"description":{"content":"<p>A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\nData Type: String</p>\n","type":"text/plain"},"key":"orderBy","value":"title ASC"}],"variable":[]}},"response":[{"id":"57713b17-49b7-4dcc-b088-c4257cd7e98b","name":"Find Sites","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/queries/sites?term=spring&maxItems=3&orderBy=title ASC","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","queries","sites"],"query":[{"key":"term","value":"spring","description":"The term to search for. Data Type: String"},{"key":"maxItems","value":"3","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"},{"key":"orderBy","value":"title ASC","description":"A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\nData Type: String"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:10:37 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"530"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 2,\n            \"hasMoreItems\": false,\n            \"totalItems\": 2,\n            \"skipCount\": 0,\n            \"maxItems\": 3\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"170c16be-6451-4e81-a7cf-0fc5f296ea32\",\n                    \"id\": \"springfield-nuclear-7g\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"Springfield Nuclear 7G\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"role\": \"SiteManager\",\n                    \"visibility\": \"PRIVATE\",\n                    \"guid\": \"22605444-6fde-4d85-8a2c-b2aff8929829\",\n                    \"description\": \"For testing EisenLens uploads\",\n                    \"id\": \"springfieldnuclear\",\n                    \"preset\": \"site-dashboard\",\n                    \"title\": \"springfieldnuclear\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"1bb96233-a717-4d6a-90a3-2a9cbc6aa75d"},{"name":"Search Request","id":"af7feaf7-897d-477b-846d-d76c1ff1e5fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n    \"query\": {\n        \"prop_cm_creator\": \"User\",\n        \"datatype\": \"cm:content\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/nodes/","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","nodes",""],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"af7feaf7-897d-477b-846d-d76c1ff1e5fd"}],"id":"19b15c83-bd91-49dd-a5da-6b9076da6e1e","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"e08bc15d-0649-4b40-a284-221285e6d529","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3e4a5bc4-86ad-4ef7-a599-98c22a0d97e2","type":"text/javascript","exec":[""]}}],"_postman_id":"19b15c83-bd91-49dd-a5da-6b9076da6e1e","description":""},{"name":"People","item":[{"name":"List People","id":"3f74c3f5-3cae-4832-aaf5-183e2dd36198","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people?maxItems=3&orderBy=firstName ASC","description":"<p>Fetches a list of all people/users in the system.</p>\n<p>You can use the include parameter to return any additional information.</p>\n<p>The default sort order for the returned list is for people to be sorted by ascending id. You can override the default by using the orderBy parameter.</p>\n<p>You can use any of the following fields to order the results:</p>\n<ul>\n<li>id</li>\n<li>firstName</li>\n<li>lastName</li>\n</ul>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","people"],"host":["systest","eisenvault","net"],"query":[{"description":{"content":"<p>The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer</p>\n","type":"text/plain"},"key":"maxItems","value":"3"},{"description":{"content":"<p>A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\nData Type: String</p>\n","type":"text/plain"},"key":"orderBy","value":"firstName ASC"}],"variable":[]}},"response":[{"id":"12305bab-141e-447a-8b7d-56bae5645e63","name":"List People","originalRequest":{"method":"GET","header":[],"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people?maxItems=3&orderBy=firstName ASC","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","people"],"query":[{"key":"maxItems","value":"3","description":"The maximum number of items to return in the list. If not supplied then the default value is 100. Data Type: Integer"},{"key":"orderBy","value":"firstName ASC","description":"A string to control the order of the entities returned in a list. You can use the orderBy parameter to sort the list by one or more fields.\nEach field has a default sort order, which is normally ascending order. Read the API method implementation notes above to check if any fields used in this method have a descending default search order.\nTo sort the entities in a specific order, you can use the ASC and DESC keywords for any field.\nData Type: String"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:18:16 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"661"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 3,\n            \"hasMoreItems\": true,\n            \"totalItems\": 91,\n            \"skipCount\": 0,\n            \"maxItems\": 3\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"firstName\": \"Aaron\",\n                    \"quotaUsed\": 0,\n                    \"quota\": -1,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"Test3\",\n                    \"enabled\": true,\n                    \"email\": \"brajivhariom@gmail.com\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"firstName\": \"aavin\",\n                    \"lastName\": \"srinivasan\",\n                    \"quotaUsed\": 0,\n                    \"quota\": 5368709120,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"aavin.srinivasan\",\n                    \"enabled\": true,\n                    \"email\": \"aavin.srinivasan@freshworks.com\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"firstName\": \"abhay\",\n                    \"quotaUsed\": 0,\n                    \"quota\": 5368709120,\n                    \"emailNotificationsEnabled\": true,\n                    \"company\": {},\n                    \"id\": \"abhay\",\n                    \"enabled\": true,\n                    \"email\": \"abhayp@thechopras.com\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"3f74c3f5-3cae-4832-aaf5-183e2dd36198"},{"name":"Create Person","id":"72ec33c1-10a2-4bd8-a439-71215aee2853","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"id\": \"api.testUser\",\n  \"firstName\": \"James\",\n  \"lastName\": \"Callahan\",\n  \"description\": \"I am not a real person\",\n  \"email\": \"james@fake.com\",\n  \"skypeId\": \"james.fake\",\n  \"googleId\": \"james.fake\",\n  \"instantMessageId\": \"james.fake\",\n  \"jobTitle\": \"CEO\",\n  \"location\": \"Honolulu\",\n  \"company\": {\n    \"organization\": \"Random Inc.\",\n    \"address1\": \"Main Street\",\n    \"address2\": \"Near Supermarket\",\n    \"address3\": \"Honolulu, USA\",\n    \"postcode\": \"1234244\",\n    \"telephone\": \"989898989898\",\n    \"fax\": \"9867333\",\n    \"email\": \"james.ceo@fake.com\"\n  },\n  \"mobile\": \"0998766\",\n  \"telephone\": \"9879678686\",\n  \"userStatus\": \"This is a status\",\n  \"enabled\": true,\n  \"emailNotificationsEnabled\": true,\n  \"password\": \"string@123\"\n}"},"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people","description":"<p>Create a person.</p>\n<p>If applicable, the given person's login access can also be optionally disabled.</p>\n<p>You must have admin rights to create a person.</p>\n<p>You can set custom properties when you create a person:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"id\": \"abeecher\",\n  \"firstName\": \"Alice\",\n  \"lastName\": \"Beecher\",\n  \"displayName\": \"Alice Beecher\",\n  \"email\": \"abeecher@example.com\",\n  \"password\": \"secret\",\n  \"properties\":\n  {\n    \"my:property\": \"The value\"\n  }\n}\n</code></pre><p>Note: setting properties of type d:content and d:category are not supported.</p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","people"],"host":["systest","eisenvault","net"],"query":[{"disabled":true,"description":{"content":"<p>A list of field names.</p>\n<p>You can use this parameter to restrict the fields returned within a response if, for example, you want to save on overall bandwidth.</p>\n<p>The list applies to a returned individual entity or entries within a collection.</p>\n<p>If the API method also supports the include parameter, then the fields specified in the include parameter are returned in addition to those specified in the fields parameter.</p>\n<p>Data Type: Array[string]</p>\n","type":"text/plain"},"key":"fields","value":""},{"disabled":true,"key":"orderBy","value":"firstName ASC"}],"variable":[]}},"response":[{"id":"c3f00e0c-19bb-471d-9a46-dfeb5c920f3e","name":"Create Person","originalRequest":{"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n  \"id\": \"api.testUser\",\n  \"firstName\": \"James\",\n  \"lastName\": \"Callahan\",\n  \"description\": \"I am not a real person\",\n  \"email\": \"james@fake.com\",\n  \"skypeId\": \"james.fake\",\n  \"googleId\": \"james.fake\",\n  \"instantMessageId\": \"james.fake\",\n  \"jobTitle\": \"CEO\",\n  \"location\": \"Honolulu\",\n  \"company\": {\n    \"organization\": \"Random Inc.\",\n    \"address1\": \"Main Street\",\n    \"address2\": \"Near Supermarket\",\n    \"address3\": \"Honolulu, USA\",\n    \"postcode\": \"1234244\",\n    \"telephone\": \"989898989898\",\n    \"fax\": \"9867333\",\n    \"email\": \"james.ceo@fake.com\"\n  },\n  \"mobile\": \"0998766\",\n  \"telephone\": \"9879678686\",\n  \"userStatus\": \"This is a status\",\n  \"enabled\": true,\n  \"emailNotificationsEnabled\": true,\n  \"password\": \"string@123\"\n}"},"url":{"raw":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people","protocol":"https","host":["systest","eisenvault","net"],"path":["alfresco","api","-default-","public","alfresco","versions","1","people"],"query":[{"key":"fields","value":"","description":"A list of field names.\n\nYou can use this parameter to restrict the fields returned within a response if, for example, you want to save on overall bandwidth.\n\nThe list applies to a returned individual entity or entries within a collection.\n\nIf the API method also supports the include parameter, then the fields specified in the include parameter are returned in addition to those specified in the fields parameter.\n\nData Type: Array[string]","disabled":true},{"key":"orderBy","value":"firstName ASC","disabled":true}]}},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:25:43 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"609"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"googleId\": \"james.fake\",\n        \"lastName\": \"Callahan\",\n        \"userStatus\": \"This is a status\",\n        \"jobTitle\": \"CEO\",\n        \"mobile\": \"0998766\",\n        \"emailNotificationsEnabled\": true,\n        \"description\": \"I am not a real person\",\n        \"telephone\": \"9879678686\",\n        \"enabled\": true,\n        \"firstName\": \"James\",\n        \"skypeId\": \"james.fake\",\n        \"instantMessageId\": \"james.fake\",\n        \"quotaUsed\": 0,\n        \"location\": \"Honolulu\",\n        \"company\": {\n            \"organization\": \"Random Inc.\",\n            \"address1\": \"Main Street\",\n            \"address2\": \"Near Supermarket\",\n            \"address3\": \"Honolulu, USA\",\n            \"postcode\": \"1234244\",\n            \"telephone\": \"989898989898\",\n            \"fax\": \"9867333\",\n            \"email\": \"james.ceo@fake.com\"\n        },\n        \"id\": \"api.testUser\",\n        \"email\": \"james@fake.com\"\n    }\n}"}],"_postman_id":"72ec33c1-10a2-4bd8-a439-71215aee2853"},{"name":"Get a Person","id":"110e1c87-6daf-42d1-aaa0-41d5f54154c8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people/lenny","description":"<p>Gets information for the person personId.</p>\n<p>You can use the -me- string in place of &lt; personid &gt; to specify the currently authenticated user.</p>\n","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","people","lenny"],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"c47b1d30-56bd-4608-b037-2388b159ecc5","name":"Get a Person","originalRequest":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people/api.testUser"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:30:30 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"609"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"googleId\": \"james.fake\",\n        \"lastName\": \"Callahan\",\n        \"userStatus\": \"This is a status\",\n        \"jobTitle\": \"CEO\",\n        \"mobile\": \"0998766\",\n        \"emailNotificationsEnabled\": true,\n        \"description\": \"I am not a real person\",\n        \"telephone\": \"9879678686\",\n        \"enabled\": true,\n        \"firstName\": \"James\",\n        \"skypeId\": \"james.fake\",\n        \"instantMessageId\": \"james.fake\",\n        \"quotaUsed\": 0,\n        \"location\": \"Honolulu\",\n        \"company\": {\n            \"organization\": \"Random Inc.\",\n            \"address1\": \"Main Street\",\n            \"address2\": \"Near Supermarket\",\n            \"address3\": \"Honolulu, USA\",\n            \"postcode\": \"1234244\",\n            \"telephone\": \"989898989898\",\n            \"fax\": \"9867333\",\n            \"email\": \"james.ceo@fake.com\"\n        },\n        \"id\": \"api.testUser\",\n        \"email\": \"james@fake.com\"\n    }\n}"}],"_postman_id":"110e1c87-6daf-42d1-aaa0-41d5f54154c8"},{"name":"Update Person","id":"adb82fff-944e-4a47-9925-942f2a2c225b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"Seamus\"\n}"},"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people/api.testUser","description":"<p>Update the given person's details.</p>\n<p>You can use the -me- string in place of &lt; personid &gt; to specify the currently authenticated user.</p>\n<p>If applicable, the given person's login access can also be optionally disabled or re-enabled.</p>\n<p>You must have admin rights to update a person — unless updating your own details.</p>\n<p>If you are changing your password, as a non-admin user, then the existing password must also be supplied (using the oldPassword field in addition to the new password value).</p>\n<p>Admin users cannot be disabled by setting enabled to false.</p>\n<p>Non-admin users may not disable themselves.</p>\n<p>You can set custom properties when you update a person:</p>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>{\n  \"firstName\": \"Alice\",\n  \"properties\":\n  {\n    \"my:property\": \"The value\"\n  }\n}\n</code></pre><p>Note: setting properties of type d:content and d:category are not supported. </p>\n","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","people","api.testUser"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"5b84ca26-8a3e-46cb-a5b0-19281232c0b1","name":"Update Person","originalRequest":{"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"firstName\": \"Seamus\"\n}"},"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/people/api.testUser"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 30 Apr 2020 14:35:46 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"610"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"entry\": {\n        \"googleId\": \"james.fake\",\n        \"lastName\": \"Callahan\",\n        \"userStatus\": \"This is a status\",\n        \"jobTitle\": \"CEO\",\n        \"mobile\": \"0998766\",\n        \"emailNotificationsEnabled\": true,\n        \"description\": \"I am not a real person\",\n        \"telephone\": \"9879678686\",\n        \"enabled\": true,\n        \"firstName\": \"Seamus\",\n        \"skypeId\": \"james.fake\",\n        \"instantMessageId\": \"james.fake\",\n        \"quotaUsed\": 0,\n        \"location\": \"Honolulu\",\n        \"company\": {\n            \"organization\": \"Random Inc.\",\n            \"address1\": \"Main Street\",\n            \"address2\": \"Near Supermarket\",\n            \"address3\": \"Honolulu, USA\",\n            \"postcode\": \"1234244\",\n            \"telephone\": \"989898989898\",\n            \"fax\": \"9867333\",\n            \"email\": \"james.ceo@fake.com\"\n        },\n        \"id\": \"api.testUser\",\n        \"email\": \"james@fake.com\"\n    }\n}"}],"_postman_id":"adb82fff-944e-4a47-9925-942f2a2c225b"}],"id":"519db48f-45db-41af-9960-6a195772c3ce","_postman_id":"519db48f-45db-41af-9960-6a195772c3ce","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Workflows","item":[{"name":"List Workflow Tasks","id":"ea43f627-2ef9-4ad8-9457-cd6067ed212b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks",""],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"7c399025-b90d-4018-93ff-0ef3b74d1959","name":"List Workflows","originalRequest":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 May 2020 14:57:31 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"2912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 7,\n            \"hasMoreItems\": false,\n            \"totalItems\": 7,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"dueAt\": \"2020-04-29T18:30:00.000+0000\",\n                    \"processDefinitionId\": \"nehruPlaceInvoiceApproval:1:2060504\",\n                    \"processId\": \"2060701\",\n                    \"name\": \"Level One Approval Task\",\n                    \"description\": \"Please approve\",\n                    \"startedAt\": \"2020-04-30T08:44:06.976+0000\",\n                    \"id\": \"2060751\",\n                    \"state\": \"unclaimed\",\n                    \"activityDefinitionId\": \"leveloneapprovaltask\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"evwf:level1ReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2058776\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Salary Sheet.xls\\\" has been submitted for your approval by David \",\n                    \"startedAt\": \"2020-04-23T10:08:29.296+0000\",\n                    \"id\": \"2058854\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2059434\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"HR - Process Document.docx\\\" has been submitted for your approval by Mike \",\n                    \"startedAt\": \"2020-04-23T10:25:40.523+0000\",\n                    \"id\": \"2059512\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060505\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'EisenVault_Training_Presentation.pptx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-27T13:40:48.681+0000\",\n                    \"id\": \"2060585\",\n                    \"assignee\": \"knitin\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060886\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Dextrus.xlsx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-30T11:47:20.529+0000\",\n                    \"id\": \"2060966\",\n                    \"assignee\": \"manish\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2062510\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Implementation Questionnaire.docx\\\" has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-11T07:31:37.884+0000\",\n                    \"id\": \"2062588\",\n                    \"assignee\": \"Test1\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:15:2062614\",\n                    \"processId\": \"2062913\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Proforma Invoice 19_20 (12th copy).xls' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-13T11:33:46.898+0000\",\n                    \"id\": \"2062991\",\n                    \"assignee\": \"sonakshi\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"ea43f627-2ef9-4ad8-9457-cd6067ed212b"},{"name":"Get Workflow Task Details","id":"8750fbb6-f1c5-4dca-b031-72314d2e0076","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/673","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks","673"],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"b9a66e99-1518-4884-a33c-732ee384b070","name":"List Workflows","originalRequest":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 May 2020 14:57:31 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"2912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 7,\n            \"hasMoreItems\": false,\n            \"totalItems\": 7,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"dueAt\": \"2020-04-29T18:30:00.000+0000\",\n                    \"processDefinitionId\": \"nehruPlaceInvoiceApproval:1:2060504\",\n                    \"processId\": \"2060701\",\n                    \"name\": \"Level One Approval Task\",\n                    \"description\": \"Please approve\",\n                    \"startedAt\": \"2020-04-30T08:44:06.976+0000\",\n                    \"id\": \"2060751\",\n                    \"state\": \"unclaimed\",\n                    \"activityDefinitionId\": \"leveloneapprovaltask\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"evwf:level1ReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2058776\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Salary Sheet.xls\\\" has been submitted for your approval by David \",\n                    \"startedAt\": \"2020-04-23T10:08:29.296+0000\",\n                    \"id\": \"2058854\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2059434\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"HR - Process Document.docx\\\" has been submitted for your approval by Mike \",\n                    \"startedAt\": \"2020-04-23T10:25:40.523+0000\",\n                    \"id\": \"2059512\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060505\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'EisenVault_Training_Presentation.pptx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-27T13:40:48.681+0000\",\n                    \"id\": \"2060585\",\n                    \"assignee\": \"knitin\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060886\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Dextrus.xlsx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-30T11:47:20.529+0000\",\n                    \"id\": \"2060966\",\n                    \"assignee\": \"manish\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2062510\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Implementation Questionnaire.docx\\\" has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-11T07:31:37.884+0000\",\n                    \"id\": \"2062588\",\n                    \"assignee\": \"Test1\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:15:2062614\",\n                    \"processId\": \"2062913\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Proforma Invoice 19_20 (12th copy).xls' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-13T11:33:46.898+0000\",\n                    \"id\": \"2062991\",\n                    \"assignee\": \"sonakshi\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"8750fbb6-f1c5-4dca-b031-72314d2e0076"},{"name":"List Tasks for a Process","id":"a6d2c8fe-e53e-4a7c-bc3a-15db1dfcf4c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/processes/188/tasks","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","processes","188","tasks"],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"8906f515-1ddf-414f-a6cc-d36362f14d53","name":"List Workflows","originalRequest":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 May 2020 14:57:31 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"2912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 7,\n            \"hasMoreItems\": false,\n            \"totalItems\": 7,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"dueAt\": \"2020-04-29T18:30:00.000+0000\",\n                    \"processDefinitionId\": \"nehruPlaceInvoiceApproval:1:2060504\",\n                    \"processId\": \"2060701\",\n                    \"name\": \"Level One Approval Task\",\n                    \"description\": \"Please approve\",\n                    \"startedAt\": \"2020-04-30T08:44:06.976+0000\",\n                    \"id\": \"2060751\",\n                    \"state\": \"unclaimed\",\n                    \"activityDefinitionId\": \"leveloneapprovaltask\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"evwf:level1ReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2058776\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Salary Sheet.xls\\\" has been submitted for your approval by David \",\n                    \"startedAt\": \"2020-04-23T10:08:29.296+0000\",\n                    \"id\": \"2058854\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2059434\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"HR - Process Document.docx\\\" has been submitted for your approval by Mike \",\n                    \"startedAt\": \"2020-04-23T10:25:40.523+0000\",\n                    \"id\": \"2059512\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060505\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'EisenVault_Training_Presentation.pptx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-27T13:40:48.681+0000\",\n                    \"id\": \"2060585\",\n                    \"assignee\": \"knitin\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060886\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Dextrus.xlsx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-30T11:47:20.529+0000\",\n                    \"id\": \"2060966\",\n                    \"assignee\": \"manish\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2062510\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Implementation Questionnaire.docx\\\" has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-11T07:31:37.884+0000\",\n                    \"id\": \"2062588\",\n                    \"assignee\": \"Test1\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:15:2062614\",\n                    \"processId\": \"2062913\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Proforma Invoice 19_20 (12th copy).xls' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-13T11:33:46.898+0000\",\n                    \"id\": \"2062991\",\n                    \"assignee\": \"sonakshi\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"a6d2c8fe-e53e-4a7c-bc3a-15db1dfcf4c7"},{"name":"List Process Definitions","id":"93cba559-346e-4477-8579-f06c1d988153","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://soubhik.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/process-definitions","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","process-definitions"],"host":["soubhik","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"bbfbb259-9b09-4f57-9085-f1d5cb45ba61","name":"List Workflows","originalRequest":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 May 2020 14:57:31 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"2912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 7,\n            \"hasMoreItems\": false,\n            \"totalItems\": 7,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"dueAt\": \"2020-04-29T18:30:00.000+0000\",\n                    \"processDefinitionId\": \"nehruPlaceInvoiceApproval:1:2060504\",\n                    \"processId\": \"2060701\",\n                    \"name\": \"Level One Approval Task\",\n                    \"description\": \"Please approve\",\n                    \"startedAt\": \"2020-04-30T08:44:06.976+0000\",\n                    \"id\": \"2060751\",\n                    \"state\": \"unclaimed\",\n                    \"activityDefinitionId\": \"leveloneapprovaltask\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"evwf:level1ReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2058776\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Salary Sheet.xls\\\" has been submitted for your approval by David \",\n                    \"startedAt\": \"2020-04-23T10:08:29.296+0000\",\n                    \"id\": \"2058854\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2059434\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"HR - Process Document.docx\\\" has been submitted for your approval by Mike \",\n                    \"startedAt\": \"2020-04-23T10:25:40.523+0000\",\n                    \"id\": \"2059512\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060505\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'EisenVault_Training_Presentation.pptx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-27T13:40:48.681+0000\",\n                    \"id\": \"2060585\",\n                    \"assignee\": \"knitin\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060886\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Dextrus.xlsx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-30T11:47:20.529+0000\",\n                    \"id\": \"2060966\",\n                    \"assignee\": \"manish\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2062510\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Implementation Questionnaire.docx\\\" has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-11T07:31:37.884+0000\",\n                    \"id\": \"2062588\",\n                    \"assignee\": \"Test1\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:15:2062614\",\n                    \"processId\": \"2062913\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Proforma Invoice 19_20 (12th copy).xls' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-13T11:33:46.898+0000\",\n                    \"id\": \"2062991\",\n                    \"assignee\": \"sonakshi\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"93cba559-346e-4477-8579-f06c1d988153"},{"name":"List Processes","id":"49d63530-fcb5-4b6b-9bc1-c8b73664e0ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/processes/","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","processes",""],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[{"id":"1e1ea4ad-8d67-4442-8483-2532a0bd9310","name":"List Workflows","originalRequest":{"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 30 May 2020 14:57:31 GMT"},{"key":"Server","value":"Apache/2.4.18 (Ubuntu)"},{"key":"Cache-Control","value":"no-cache"},{"key":"Expires","value":"Thu, 01 Jan 1970 00:00:00 GMT"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Content-Length","value":"2912"},{"key":"Keep-Alive","value":"timeout=5, max=100"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"list\": {\n        \"pagination\": {\n            \"count\": 7,\n            \"hasMoreItems\": false,\n            \"totalItems\": 7,\n            \"skipCount\": 0,\n            \"maxItems\": 100\n        },\n        \"entries\": [\n            {\n                \"entry\": {\n                    \"dueAt\": \"2020-04-29T18:30:00.000+0000\",\n                    \"processDefinitionId\": \"nehruPlaceInvoiceApproval:1:2060504\",\n                    \"processId\": \"2060701\",\n                    \"name\": \"Level One Approval Task\",\n                    \"description\": \"Please approve\",\n                    \"startedAt\": \"2020-04-30T08:44:06.976+0000\",\n                    \"id\": \"2060751\",\n                    \"state\": \"unclaimed\",\n                    \"activityDefinitionId\": \"leveloneapprovaltask\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"evwf:level1ReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2058776\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Salary Sheet.xls\\\" has been submitted for your approval by David \",\n                    \"startedAt\": \"2020-04-23T10:08:29.296+0000\",\n                    \"id\": \"2058854\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2059434\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"HR - Process Document.docx\\\" has been submitted for your approval by Mike \",\n                    \"startedAt\": \"2020-04-23T10:25:40.523+0000\",\n                    \"id\": \"2059512\",\n                    \"assignee\": \"Test4\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060505\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'EisenVault_Training_Presentation.pptx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-27T13:40:48.681+0000\",\n                    \"id\": \"2060585\",\n                    \"assignee\": \"knitin\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2060886\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Dextrus.xlsx' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-04-30T11:47:20.529+0000\",\n                    \"id\": \"2060966\",\n                    \"assignee\": \"manish\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:14:2033004\",\n                    \"processId\": \"2062510\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  \\\"Implementation Questionnaire.docx\\\" has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-11T07:31:37.884+0000\",\n                    \"id\": \"2062588\",\n                    \"assignee\": \"Test1\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            },\n            {\n                \"entry\": {\n                    \"processDefinitionId\": \"docApproveReject:15:2062614\",\n                    \"processId\": \"2062913\",\n                    \"name\": \"User Review\",\n                    \"description\": \"Document  'Proforma Invoice 19_20 (12th copy).xls' has been submitted for your approval by Administrator \",\n                    \"startedAt\": \"2020-05-13T11:33:46.898+0000\",\n                    \"id\": \"2062991\",\n                    \"assignee\": \"sonakshi\",\n                    \"state\": \"claimed\",\n                    \"activityDefinitionId\": \"usertask1\",\n                    \"priority\": 2,\n                    \"formResourceKey\": \"scwf:activitiReviewTask\"\n                }\n            }\n        ]\n    }\n}"}],"_postman_id":"49d63530-fcb5-4b6b-9bc1-c8b73664e0ae"},{"name":"Get Task Items","id":"d45d4a8f-a442-4f2c-8d1b-f01eff0680ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/1331/items","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks","1331","items"],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"d45d4a8f-a442-4f2c-8d1b-f01eff0680ae"},{"name":"Get Process Items","id":"58a2cea1-74d6-4641-a2b8-c555f5313b97","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://soubhik.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/processes/293/items","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","processes","293","items"],"host":["soubhik","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"58a2cea1-74d6-4641-a2b8-c555f5313b97"},{"name":"Get Process Variables","id":"05a20fd3-e66d-4197-845a-6aa2b416292e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/processes/1359/variables","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","processes","1359","variables"],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"05a20fd3-e66d-4197-845a-6aa2b416292e"},{"name":"Get Task Variables","id":"61907f0e-322c-4227-92c7-f1fef65566e7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/1403/variables/","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks","1403","variables",""],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"61907f0e-322c-4227-92c7-f1fef65566e7"},{"name":"Get Details of a Workflow Task","id":"c0ec015e-e691-4b9c-8e35-52fd3cc7d7d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://soubhik.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/293","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks","293"],"host":["soubhik","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c0ec015e-e691-4b9c-8e35-52fd3cc7d7d3"},{"name":"Approve Task","id":"bd1a8938-a226-4689-8557-3625856ba910","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"scope\": \"local\",\n        \"name\": \"bpm_status\",\n        \"type\": \"d:text\",\n        \"value\": \"Completed\"\n    },\n    {\n        \"scope\": \"local\",\n        \"name\": \"bpm_comment\",\n        \"type\": \"d:text\",\n        \"value\": \"This is great!!! From Postman\"\n    },\n    {\n        \"scope\": \"local\",\n        \"name\": \"wf_reviewOutcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"scope\": \"local\",\n        \"name\": \"bpm_outcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"scope\": \"global\",\n        \"name\": \"wf_reviewOutcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"name\": \"pooledActorsHistory\",\n        \"scope\": \"local\",\n        \"type\": \"d:any\",\n        \"value\": []\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/801/variables/","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks","801","variables",""],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"bd1a8938-a226-4689-8557-3625856ba910"},{"name":"Approve Process","id":"acee55c2-2711-4219-93d2-59476d5aca56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"[\n    {\n        \"name\": \"bpm_status\",\n        \"type\": \"d:text\",\n        \"value\": \"Not Yet Started\"\n    },\n    {\n        \"name\": \"wf_reviewOutcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"name\": \"bpm_outcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"name\": \"taskFormKey\",\n        \"type\": \"d:text\",\n        \"value\": \"wf:approvedTask\"\n    },\n    {\n        \"name\": \"bpm_packageItemActionGroup\",\n        \"type\": \"d:text\",\n        \"value\": \"read_package_item_actions\"\n    }\n]","options":{"raw":{"language":"json"}}},"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/processes/757/variables/","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","processes","757","variables",""],"host":["vipul","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"acee55c2-2711-4219-93d2-59476d5aca56"},{"name":"Resolve a Task","id":"f4bc599b-511b-4472-bf9a-171c7d98dfe9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"raw","raw":"{\n  \"state\" : \"completed\",\n  \"variables\" : [\n  {\n    \"name\" : \"bpm_priority\",\n    \"type\" : \"d:int\",\n    \"value\" : 1,\n    \"scope\" : \"global\"\n  },{\n        \"scope\": \"local\",\n        \"name\": \"bpm_status\",\n        \"type\": \"d:text\",\n        \"value\": \"Completed\"\n    },\n    {\n        \"scope\": \"local\",\n        \"name\": \"bpm_comment\",\n        \"type\": \"d:text\",\n        \"value\": \"This is great!!! From Postman\"\n    },\n    {\n        \"scope\": \"local\",\n        \"name\": \"wf_reviewOutcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"scope\": \"local\",\n        \"name\": \"bpm_outcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"scope\": \"global\",\n        \"name\": \"wf_reviewOutcome\",\n        \"type\": \"d:text\",\n        \"value\": \"Approve\"\n    },\n    {\n        \"name\": \"pooledActorsHistory\",\n        \"scope\": \"local\",\n        \"type\": \"d:any\",\n        \"value\": []\n    }\n ]\n}","options":{"raw":{"language":"json"}}},"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/workflow/versions/1/tasks/1331?select=state,variables","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","workflow","versions","1","tasks","1331"],"host":["vipul","eisenvault","net"],"query":[{"key":"select","value":"state,variables"}],"variable":[]}},"response":[],"_postman_id":"f4bc599b-511b-4472-bf9a-171c7d98dfe9"}],"id":"7c521711-cd8b-4009-bddf-6318e8bc744f","event":[{"listen":"prerequest","script":{"id":"d843ead7-2b72-462e-8943-2c7187b228df","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"d5e7d168-ad74-4838-81b5-b870b259a191","type":"text/javascript","exec":[""]}}],"_postman_id":"7c521711-cd8b-4009-bddf-6318e8bc744f","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Nodes","item":[{"name":"Get Node","id":"8c3aad18-db27-4a18-8f57-c5ecfea8c540","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/deleted-nodes?maxItems=50","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","deleted-nodes"],"host":["systest","eisenvault","net"],"query":[{"key":"maxItems","value":"50"}],"variable":[]}},"response":[],"_postman_id":"8c3aad18-db27-4a18-8f57-c5ecfea8c540"},{"name":"Get Node Content","id":"59fe4fde-0bd9-4209-939a-b1a3f6c0aae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://vipul.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/66376a85-24e2-4f18-87e1-360c0dd11efc/content?attachment=false","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","66376a85-24e2-4f18-87e1-360c0dd11efc","content"],"host":["vipul","eisenvault","net"],"query":[{"key":"attachment","value":"false"},{"disabled":true,"key":"alf_ticket","value":"TICKET_7e1076a9c1f6680d588f059dca046d0f5790faac"}],"variable":[]}},"response":[],"_postman_id":"59fe4fde-0bd9-4209-939a-b1a3f6c0aae3"},{"name":"Get Node with Heroku Cors Anywhere","id":"b3453ad6-d162-433e-b4c0-189425bc7a2a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"X-Requested-With","value":"XMLHttpRequest","type":"text"}],"url":"https://cors-anywhere.herokuapp.com/https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/ad61a777-e722-4951-a653-9351edd634d5/content?attachment=false","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}},"urlObject":{"protocol":"https","path":["https:","","systest.eisenvault.net","alfresco","api","-default-","public","alfresco","versions","1","nodes","ad61a777-e722-4951-a653-9351edd634d5","content"],"host":["cors-anywhere","herokuapp","com"],"query":[{"key":"attachment","value":"false"}],"variable":[]}},"response":[],"_postman_id":"b3453ad6-d162-433e-b4c0-189425bc7a2a"},{"name":"Update Node Content","id":"20e52454-d3bd-4a3e-9972-a920d5462915","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"PUT","header":[],"body":{"mode":"file","file":{"src":"/Users/vipulswarup/Google Drive - EisenVault/Product Management/Test Data/Scans/Large PDFs/DCM-SRCA (IFC) 01-1948.pdf"}},"url":"https://soubhik.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/b4d91503-718f-465a-8f9f-aa429a2c6cd9/content?majorVersion=false&comment=\"Signature Added\"&","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","b4d91503-718f-465a-8f9f-aa429a2c6cd9","content"],"host":["soubhik","eisenvault","net"],"query":[{"key":"majorVersion","value":"false"},{"key":"comment","value":"\"Signature Added\""},{"key":"","value":null}],"variable":[]}},"response":[],"_postman_id":"20e52454-d3bd-4a3e-9972-a920d5462915"},{"name":"Create Empty File Node in Shared Space","id":"3ff653d5-9e00-49a0-8558-d5fa2a94e143","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"url":"https://soubhik.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/-shared-/children","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","-shared-","children"],"host":["soubhik","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ff653d5-9e00-49a0-8558-d5fa2a94e143"}],"id":"01eb9409-e556-4a05-8e97-4856e89826c7","_postman_id":"01eb9409-e556-4a05-8e97-4856e89826c7","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Authentication","item":[{"name":"Login - Get Ticket","id":"f4911022-7e23-4eb7-8815-65abea43f815","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"userId\":\"vipul\",\n    \"password\": \"Vipul@123\"\n}"},"url":"https://demo.eisenvault.net/alfresco/api/-default-/public/authentication/versions/1/tickets","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","authentication","versions","1","tickets"],"host":["demo","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"f4911022-7e23-4eb7-8815-65abea43f815"}],"id":"59d58f64-0053-49c5-922b-1bd84aa2df41","_postman_id":"59d58f64-0053-49c5-922b-1bd84aa2df41","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Other","item":[{"name":"Get RepoSize","id":"086077a1-103b-4284-83be-615b0b877bea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/s/aws-reposize","urlObject":{"protocol":"https","path":["alfresco","s","aws-reposize"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"086077a1-103b-4284-83be-615b0b877bea"}],"id":"a51fc8bd-f622-4a5f-a3f5-00bc1abb5803","_postman_id":"a51fc8bd-f622-4a5f-a3f5-00bc1abb5803","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Renditions","item":[{"name":"Get Renditions","id":"8eaf1492-9fac-4362-973f-d5ffd97d37cd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/c7212c42-9fe8-4578-b42e-55746275d00d/renditions/pdf","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","c7212c42-9fe8-4578-b42e-55746275d00d","renditions","pdf"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"8eaf1492-9fac-4362-973f-d5ffd97d37cd"},{"name":"Get Renditions Content","id":"cce45a80-fe83-46b1-be5e-a3b17bc080ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/c7212c42-9fe8-4578-b42e-55746275d00d/renditions/pdf/content","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","c7212c42-9fe8-4578-b42e-55746275d00d","renditions","pdf","content"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"cce45a80-fe83-46b1-be5e-a3b17bc080ef"},{"name":"Create a Rendition","id":"5a40b71f-3635-4099-83ab-612c8457f8a5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"POST","header":[],"body":{"mode":"raw","raw":"{\n    \"id\":\"pdf\"\n}","options":{"raw":{"language":"json"}}},"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/nodes/c7212c42-9fe8-4578-b42e-55746275d00d/renditions","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","nodes","c7212c42-9fe8-4578-b42e-55746275d00d","renditions"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"5a40b71f-3635-4099-83ab-612c8457f8a5"}],"id":"f942ce9e-0dca-430f-89dc-2d4a34de6254","_postman_id":"f942ce9e-0dca-430f-89dc-2d4a34de6254","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Trashcan","item":[{"name":"List of Deleted Documents","id":"6e9cbea7-a267-462e-ba9e-a73bd9bc586b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/deleted-nodes","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","deleted-nodes"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e9cbea7-a267-462e-ba9e-a73bd9bc586b"},{"name":"Permanently Delete a Node","id":"aab0c37f-7216-4505-b5db-b1b7f09a8134","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"DELETE","header":[],"url":"https://systest.eisenvault.net/alfresco/api/-default-/public/alfresco/versions/1/deleted-nodes/66941427-6f0b-4e74-ac5a-0ba3f0e8ca2b","urlObject":{"protocol":"https","path":["alfresco","api","-default-","public","alfresco","versions","1","deleted-nodes","66941427-6f0b-4e74-ac5a-0ba3f0e8ca2b"],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"aab0c37f-7216-4505-b5db-b1b7f09a8134"}],"id":"cc0619da-0aab-49aa-9246-6e1cf24d3e22","_postman_id":"cc0619da-0aab-49aa-9246-6e1cf24d3e22","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}},{"name":"Signatures","item":[{"name":"Get E Signature Image","id":"2a2c899b-29f9-43d6-a82c-3f6bf81f40c9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":false},"method":"GET","header":[],"url":"https://systest.eisenvault.net/alfresco/s/slingshot/profile/esign/waylan.smithers/esign/","urlObject":{"protocol":"https","path":["alfresco","s","slingshot","profile","esign","waylan.smithers","esign",""],"host":["systest","eisenvault","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"2a2c899b-29f9-43d6-a82c-3f6bf81f40c9"}],"id":"24cd0ef9-23de-4a9c-b8fb-7f396697c371","_postman_id":"24cd0ef9-23de-4a9c-b8fb-7f396697c371","description":"","auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]},"isInherited":true,"source":{"_postman_id":"12548d06-2190-4b19-9f47-949a85a77bb9","id":"12548d06-2190-4b19-9f47-949a85a77bb9","name":"EisenVault API","type":"collection"}}}],"auth":{"type":"basic","basic":{"basicConfig":[{"key":"username","value":"<username>"},{"key":"password","value":"<password>"}]}},"event":[{"listen":"prerequest","script":{"id":"24f7f28a-123a-4182-839b-a7d898eb34fc","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"22748700-8af2-47c6-ac22-8b4a66e58c61","type":"text/javascript","exec":[""]}}]}