{"info":{"_postman_id":"7746f7eb-daa2-427a-a27a-651d1a33c635","name":"TeamForge Baselines REST API Documentation","description":"<html><head></head><body><p>TeamForge Baseline APIs are used to perform all baseline related activities in TeamForge.</p>\n<p>Read <a href=\"https://forge.collab.net/apidoc/#auth\">how to authenticate</a> to know more about authentication and access tokens.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"7877371","collectionId":"7746f7eb-daa2-427a-a27a-651d1a33c635","publishedId":"SztHXkg5","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2020-06-04T11:04:50.000Z"},"item":[{"name":"Getting Started","item":[{"name":"Authenticate User","event":[{"listen":"test","script":{"id":"97f5ab39-1c10-4bc5-9eda-3ad62ff2aeba","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"AdminToken\", jsonData.token_type + \" \" + jsonData.access_token);","postman.setEnvironmentVariable(\"AdminTokenSoap\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"efe56fad-421b-457d-b7db-65f84c1da8d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{userName}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"},{"key":"client_id","value":"api-client","type":"text"},{"key":"scope","value":"urn:ctf:services:ctf urn:ctf:services:svn urn:ctf:services:gerrit urn:ctf:services:soap60","type":"text"}]},"url":"{{HostName}}/sf/auth/token","description":"<p>Authenticates user to access TeamForge</p>\n","urlObject":{"path":["sf","auth","token"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"797017f7-1f37-40e2-847d-18acdf23704c","name":"Authenticate User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{userName}}","type":"text"},{"key":"password","value":"{{password}}","type":"text"},{"key":"client_id","value":"api-client","type":"text"},{"key":"scope","value":"urn:ctf:services:ctf urn:ctf:services:svn urn:ctf:services:gerrit urn:ctf:services:soap60","type":"text"}]},"url":"{{HostName}}/sf/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:23:33 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Cache-Control","value":"no-store, max-age=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Expires","value":"Sat, 20 Oct 2018 06:23:33 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"436"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImF1ZCI6WyJzb2FwNjAiLCJjdGYiLCJzdm4iLCJnZXJyaXQiXSwibmJmIjoxNTQwMDE2NjEzLCJhbXIiOlsidXJuOmN0ZjphbXI6dXB3ZCJdLCJpc3MiOiJ1cm46Y3RmOmlzczp0Zi1pZHAiLCJleHAiOjE1NDAwMjAyMTMsImlhdCI6MTU0MDAxNjYxMywianRpIjoiMWQ3OTZkMjgtNGZjMC00NmU2LTg5MmItM2M3MGJjZDYzNjdjIn0.Vi0NCswXLcuKmOR7wlF21CEE0KG9dIcBGZBWj_KlpRMr3Elxpba8Mv_2nE-SwxjzRfFZeXlMBX6lkm8JhcJy_PsAc8rb_F4HHAfyWKiEMlw38yumdILO6LboHjSeQl2NHur0cFAAC26Uv2l7GAdHMQwv3e9ICMlfHqP_jkkyFSw\",\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"efe56fad-421b-457d-b7db-65f84c1da8d3"},{"name":"Create User","event":[{"listen":"prerequest","script":{"id":"a82b280b-259d-43f6-afc1-dbccffc3fe8c","exec":["pm.environment.set('apiUserPsw', 'Collabnet1!');",""],"type":"text/javascript"}},{"listen":"test","script":{"id":"e47481e3-2fd1-4163-a363-430bef003837","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.test(\"Response time is less than 1300ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(1300);","});","","var schema = {","  \"username\": \"string\",","  \"email\": \"string\",","  \"fullname\": \"string\",","  \"organization\": \"string\",","  \"superUser\": \"boolean\",","  \"restrictedUser\": \"boolean\",","  \"localUser\": \"boolean\",","  \"licenseTypes\": [","    \"string\"","  ],","  \"locale\": \"string\",","  \"timezone\": \"string\",","  \"password\": \"string\"","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"apiUser\", jsonData.username);","postman.setEnvironmentVariable(\"apiUserID\", jsonData.id);",""],"type":"text/javascript"}}],"id":"e844b7a0-1e6b-408e-8734-f507c998f84e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"apiUser\",\r\n  \"email\": \"yoga@mail-qa1.maa.collab.net\",\r\n  \"fullname\": \"apiUser\",\r\n  \"organization\": \"cspl\",\r\n  \"superUser\": true,\r\n  \"restrictedUser\": true,\r\n  \"localUser\": false,\r\n  \"licenseTypes\": [\r\n    \"ALM\", \"BASELINE\"\r\n  ],\r\n  \"locale\": \"EN\",\r\n  \"timezone\": \"\",\r\n  \"password\": \"{{apiUserPsw}}\"\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/users","description":"<p>Creates a restricted user. Project permission, baseline permission, and so on can be assigned to this user at a later point in time based on the requirements.</p>\n","urlObject":{"path":["ctfrest","foundation","v1","users"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6e961620-62ad-48c1-96e3-3663320dee72","name":"Create User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"username\": \"apiUser\",\r\n  \"email\": \"yoga@mail-qa1.maa.collab.net\",\r\n  \"fullname\": \"apiUser\",\r\n  \"organization\": \"cspl\",\r\n  \"superUser\": true,\r\n  \"restrictedUser\": true,\r\n  \"localUser\": false,\r\n  \"licenseTypes\": [\r\n    \"ALM\", \"BASELINE\"\r\n  ],\r\n  \"locale\": \"EN\",\r\n  \"timezone\": \"\",\r\n  \"password\": \"{{apiUserPsw}}\"\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/users"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:27:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/foundation/v1/users/by-username/apiUser223"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"877"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"user\",\n    \"id\": \"user1159\",\n    \"username\": \"apiUser223\",\n    \"email\": \"yoga@mail-qa1.maa.collab.net\",\n    \"alternateEmail1\": null,\n    \"alternateEmail2\": null,\n    \"alternateEmail3\": null,\n    \"fullname\": \"apiUser112\",\n    \"organization\": \"cspl\",\n    \"superUser\": true,\n    \"restrictedUser\": true,\n    \"localUser\": false,\n    \"status\": \"Active\",\n    \"licenseTypes\": [\n        \"BASELINE\",\n        \"ALM\"\n    ],\n    \"lastLogin\": null,\n    \"timezone\": \"Asia/Kolkata\",\n    \"locale\": \"en\",\n    \"_links\": {\n        \"resetPassword\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/users/by-username/apiUser223/password\",\n            \"method\": \"PATCH\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/users/by-username/apiUser223\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/users/by-username/apiUser223\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/users/by-username/apiUser223\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"e844b7a0-1e6b-408e-8734-f507c998f84e"},{"name":"Login as Restricted User","event":[{"listen":"test","script":{"id":"c9291f78-c593-43f5-bd87-869056cd33bd","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"Token\", jsonData.token_type + \" \" + jsonData.access_token);","postman.setEnvironmentVariable(\"TokenSoap\", jsonData.access_token);"],"type":"text/javascript"}}],"id":"70fe0dfe-6c9a-473a-8366-c7f52e67becf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{apiUser}}","type":"text"},{"key":"password","value":"{{apiUserPsw}}","type":"text"},{"key":"client_id","value":"api-client","type":"text"},{"key":"scope","value":"urn:ctf:services:ctf urn:ctf:services:svn urn:ctf:services:gerrit urn:ctf:services:soap60","type":"text"}]},"url":"{{HostName}}/sf/auth/token","description":"<p>Users are logged in as restricted users. These users are assigned with the required permissions such as project permission, baseline permission and so on.</p>\n","urlObject":{"path":["sf","auth","token"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"c15ecedf-8d50-49a3-b314-220e07ad6355","name":"Login as Restricted User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"grant_type","value":"password","type":"text"},{"key":"username","value":"{{apiUser}}","type":"text"},{"key":"password","value":"{{apiUserPsw}}","type":"text"},{"key":"client_id","value":"api-client","type":"text"},{"key":"scope","value":"urn:ctf:services:ctf urn:ctf:services:svn urn:ctf:services:gerrit urn:ctf:services:soap60","type":"text"}]},"url":"{{HostName}}/sf/auth/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 05:02:43 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Cache-Control","value":"no-store, max-age=0"},{"key":"Pragma","value":"no-cache"},{"key":"Content-Type","value":"application/json;charset=UTF-8"},{"key":"Expires","value":"Fri, 19 Oct 2018 05:02:43 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"439"},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJhcGlVc2VyNTUxIiwiYXVkIjpbInNvYXA2MCIsImN0ZiIsInN2biIsImdlcnJpdCJdLCJuYmYiOjE1Mzk5MjUzNjMsImFtciI6WyJ1cm46Y3RmOmFtcjp1cHdkIl0sImlzcyI6InVybjpjdGY6aXNzOnRmLWlkcCIsImV4cCI6MTUzOTkyODk2MywiaWF0IjoxNTM5OTI1MzYzLCJqdGkiOiI3MGE1YjQxZS03ZDI4LTRhN2EtYTI2My0wYzVjNTdhZjkxNTgifQ.HB8gKoaP18hiUH88mDGWK5EtddBGzH4MTWebP-R4JRDcE3HYFnl7IN29LSL2FIZMeOv3Yu3Pc2VBlRrluljUyK_8KDpUVHOVNH71IMMn4lzHniL1Ap_IXH4mcjrUtey_XS0EsHl17FlvS_vfDpht58utpiKRbpBzJ3c07ejEZYk\",\n    \"token_type\": \"Bearer\"\n}"}],"_postman_id":"70fe0dfe-6c9a-473a-8366-c7f52e67becf"},{"name":"Create Project","event":[{"listen":"test","script":{"id":"dea32473-c833-46fa-ace3-9acd6c4bc5f2","type":"text/javascript","exec":["pm.test(\"Status code is 201 - Project Created Successfully\", function () {","    pm.response.to.have.status(201);","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","var schema = {","  \"name\": \"string\",","  \"title\": \"string\",","  \"description\": \"string\",","  \"templateId\": \"string\",","  \"accessLevel\": \"private\",","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","pm.environment.set(\"projectname\", jsonData.title);","pm.environment.set(\"projectId\", jsonData.id);","","pm.environment.set(\"TrackerCount\", \"1\");"]}},{"listen":"prerequest","script":{"id":"b64c62ed-8260-4301-a927-f4d7441b1292","type":"text/javascript","exec":["pm.environment.set(\"count\", \"1\");"]}}],"id":"0a4788dc-3eb3-4844-8776-e3b316205aa7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"baselineapiprojectwithdataset\",\r\n  \"title\": \"baselineapiprojectwithdataset\",\r\n  \"description\": \"Project created via REST API\",\r\n  \"templateId\": \"\",\r\n  \"accessLevel\": \"private\"\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects","description":"<p>Creates a new project in TeamForge</p>\n","urlObject":{"path":["ctfrest","foundation","v1","projects"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6f0a49f9-9b25-42db-aabb-effa00f67d2b","name":"Create Project","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"baselineapiprojectwithdataset\",\r\n  \"title\": \"baselineapiprojectwithdataset\",\r\n  \"description\": \"Project created via REST API\",\r\n  \"templateId\": \"\",\r\n  \"accessLevel\": \"private\"\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:28:05 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1350"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"project\",\n    \"id\": \"proj1087\",\n    \"createdBy\": \"admin\",\n    \"createdDate\": \"2018-10-20T06:27:57.000+0000\",\n    \"lastModifiedBy\": \"admin\",\n    \"lastModifiedDate\": \"2018-10-20T06:27:57.000+0000\",\n    \"path\": \"projects.baselineapiprojectwithdataset288\",\n    \"title\": \"baselineapiprojectwithdataset904\",\n    \"description\": \"Project created via REST API\",\n    \"parentProjectId\": null,\n    \"hierarchyPath\": null,\n    \"locked\": false,\n    \"templateId\": \"---\",\n    \"accessLevel\": \"private\",\n    \"_links\": {\n        \"unlock\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087/lock\",\n            \"method\": \"DELETE\"\n        },\n        \"diskusage\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087/diskusage\",\n            \"method\": \"GET\"\n        },\n        \"members\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087/members\",\n            \"method\": \"GET\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087\",\n            \"method\": \"PATCH\"\n        },\n        \"lock\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087/lock\",\n            \"method\": \"PUT\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/proj1087?notify=true&force=false\",\n            \"method\": \"DELETE\"\n        },\n        \"admins\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/projects/proj1087/admins\",\n            \"method\": \"GET\"\n        }\n    }\n}"}],"_postman_id":"0a4788dc-3eb3-4844-8776-e3b316205aa7"},{"name":"Add Users to Project","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","",""],"id":"e62b20ce-6515-45df-8116-8188f4a9044c"}}],"id":"8b031d2d-7333-44d4-b279-5d60bb70a0cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/{{userName}}","description":"<p>Add selected users to a project</p>\n","urlObject":{"path":["ctfrest","foundation","v1","projects","{{projectId}}","{{userName}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"20cbaade-6988-4c6e-9f4c-6ca4f213b6d8","name":"Add Users to Project","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/{{userName}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:28:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Length","value":"0"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"8b031d2d-7333-44d4-b279-5d60bb70a0cc"},{"name":"Add API Users to Project","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","",""],"id":"e1dd340f-33ca-4f1f-9478-b6232a89af61"}}],"id":"4cb79f52-be7a-4b1e-98e0-32195aa85f53","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/{{apiUser}}","description":"<p>Add API users to a project</p>\n","urlObject":{"path":["ctfrest","foundation","v1","projects","{{projectId}}","{{apiUser}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"581a74fc-6218-48ed-98fa-86e50d5787a6","name":"Add API Users to Project","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/{{apiUser}}"},"status":"OK","code":200,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:29:10 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Length","value":"0"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"4cb79f52-be7a-4b1e-98e0-32195aa85f53"},{"name":"Create Project Role","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 201 - Role is created successfully.\", function () {","    pm.response.to.have.status(201);","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.test(\"Response time is less than 5000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(5000);","});","","var schema = {","  \"roleType\": \"Global\",","  \"projectId\": \"string\",","  \"title\": \"string\",","  \"description\": \"string\",","  \"preventInheritance\": true,","  \"requestable\": true,","  \"autoGrant\": true","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"roleId\", jsonData.id);","postman.setEnvironmentVariable(\"projectrole\", jsonData.title);"],"id":"163bb348-8134-4e64-afd2-3d0b7b90abac"}}],"id":"62801a20-0903-4f2e-9033-4f14d3c5778e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"roleType\": \"Project\",\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"title\": \"projectrole\",\r\n  \"description\": \"Role created via REST API\",\r\n  \"preventInheritance\": true,\r\n  \"requestable\": true,\r\n  \"autoGrant\": true\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles","description":"<p>Creates a new user role in the project</p>\n","urlObject":{"path":["ctfrest","foundation","v1","projects","{{projectId}}","roles"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"4b3a1678-105d-4803-87bb-70fcdd3e2e65","name":"Create Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"roleType\": \"Project\",\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"title\": \"projectrole\",\r\n  \"description\": \"Role created via REST API\",\r\n  \"preventInheritance\": true,\r\n  \"requestable\": true,\r\n  \"autoGrant\": true\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:29:52 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1468"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"530"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"role\",\n    \"id\": \"role1468\",\n    \"title\": \"projectrole265\",\n    \"description\": \"Role created via REST API\",\n    \"createdInProjectId\": \"proj1087\",\n    \"status\": \"A\",\n    \"roleType\": \"Project\",\n    \"preventInheritance\": true,\n    \"requestable\": true,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1468\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1468\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1468\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"62801a20-0903-4f2e-9033-4f14d3c5778e"},{"name":"Add Users to Project Role","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","pm.test(\"Response time is less than 5000ms\", function() {","  pm.expect(pm.response.responseTime).to.be.below(5000);","});"],"id":"1a658087-eedd-4e9a-8c9d-f89da7b9f00f"}}],"id":"46754f89-75ab-4c3f-b6c1-6a27aa45569e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles/{{roleId}}/members/{{userName}}","description":"<p>Add users to the selected project role</p>\n","urlObject":{"path":["ctfrest","foundation","v1","projects","{{projectId}}","roles","{{roleId}}","members","{{userName}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2cafbe6e-d0a9-49c7-b344-f21bcb098a00","name":"Add Users to Project Role","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles/{{roleId}}/members/{{userName}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:30:26 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"46754f89-75ab-4c3f-b6c1-6a27aa45569e"},{"name":"Add API Users to ProjectRole","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","","pm.test(\"Response time is less than 5000ms\", function() {","  pm.expect(pm.response.responseTime).to.be.below(5000);","});"],"id":"08a666da-c6c9-44e0-87bb-014309df55d4"}}],"id":"b4d74b7b-6b8c-434f-a202-8432d7341804","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles/{{roleId}}/members/{{apiUser}}","urlObject":{"path":["ctfrest","foundation","v1","projects","{{projectId}}","roles","{{roleId}}","members","{{apiUser}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"b456cfa6-6570-4ea8-bf37-75b63ab787cc","name":"Add API Users to ProjectRole","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles/{{roleId}}/members/{{apiUser}}"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sat, 20 Oct 2018 06:30:48 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"b4d74b7b-6b8c-434f-a202-8432d7341804"},{"name":"Assign Baseline Admin Permission to Project Role","event":[{"listen":"test","script":{"id":"acb6823f-52dd-4c07-81fb-4a016fab8ea2","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"248d773b-af21-4597-a380-7042704e604e","type":"text/javascript","exec":["pm.environment.set(\"rel_count\", \"1\");","pm.environment.set(\"count\", \"1\");"]}}],"id":"1fe44a4f-290c-46ac-90c4-1d393c61c093","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_admin</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns \"Baseline Admin\" permission to selected project role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"1102a724-ff21-4367-8b35-74cc01e9650c","name":"Assign Baseline Admin Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_admin</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"1fe44a4f-290c-46ac-90c4-1d393c61c093"},{"name":"Assign View Only Permission to Project Role","event":[{"listen":"test","script":{"id":"772e707b-c729-472a-9e00-36369936bedf","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"c994eda8-fc9b-4c8b-928c-6d64fe301849","type":"text/javascript","exec":[""]}}],"id":"3a8d99ca-f498-4674-9114-df1f65016a79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_view</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns \"View Only\" permission to select project role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"7bebe45c-cee3-4546-9e21-eb7f36f21f14","name":"Assign View Only Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_view</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"a1236079-d624-422f-a001-c70e86fd6f70","name":"Assign View Only Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_view</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:49:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:49:23 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"},{"id":"d00c6961-d6c7-4c86-8830-574760b4b976","name":"Assign View Only Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_view</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:49:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:49:23 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"},{"id":"fb6f25d9-8791-45cd-8349-7884cca248cd","name":"Assign View Only Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_view</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:49:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:49:23 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"}],"_postman_id":"3a8d99ca-f498-4674-9114-df1f65016a79"},{"name":"Assign Baseline Review Permission to Project Role","event":[{"listen":"test","script":{"id":"2b2d4c57-482b-47a3-9381-c33986db592d","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"810c8b16-82f0-46fd-b94a-b867d90dc9a0","type":"text/javascript","exec":[""]}}],"id":"72d27b4b-6b11-419e-8713-27ca40911e3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_review</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns \"Baseline Review\" permission to selected project role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"ba7d50aa-ee74-4ee6-84c4-44c1b536f4a4","name":"Assign Baseline Review Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_review</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:50:48 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:50:47 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"}],"_postman_id":"72d27b4b-6b11-419e-8713-27ca40911e3a"},{"name":"Assign Create/View Baseline Permission to Project Role","event":[{"listen":"test","script":{"id":"890eaccd-17f0-40e3-a799-373e6f37d5d3","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"1723223d-00dc-4817-b4bd-0fc598c855c3","type":"text/javascript","exec":[""]}}],"id":"b737d0b5-3894-46a3-8a85-687d4c03a395","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_create</operationCluster>\r\n         <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns \"Create/View Baseline\" permission to selected project role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"39b840a9-7dfb-41b8-a2c4-b65daf6b50a4","name":"Assign Create/View Baseline Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_create</operationCluster>\r\n         <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:51:16 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:51:16 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"}],"_postman_id":"b737d0b5-3894-46a3-8a85-687d4c03a395"},{"name":"Assign Project Baseline Definition Permission to Project Role","event":[{"listen":"test","script":{"id":"3e7a1b63-13e0-4539-bfdc-5f452f159aa5","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"b85e59fa-1f06-4067-9ffe-9e1a733ba72d","type":"text/javascript","exec":[""]}}],"id":"72535b19-eda4-46c3-a4c4-2b7c4ad5940a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">project_bdef</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns \"Project Baseline Definition\" permission to selected project role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"7a49055b-0a1b-42be-94c6-4e74fd9622b4","name":"Assign Project Baseline Definition Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">project_bdef</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:51:59 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:51:59 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"}],"_postman_id":"72535b19-eda4-46c3-a4c4-2b7c4ad5940a"},{"name":"Assign Create Project Baseline Permission to Project Role","event":[{"listen":"test","script":{"id":"6482f7cb-a662-459e-9d92-7df8ed4ccc69","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"a5984703-af89-42d7-aae5-b25ff00bc001","type":"text/javascript","exec":[""]}}],"id":"48262e8a-2096-4dc2-8790-36e8c546ce29","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">project_baseline</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns \"Create Project Baseline\" permission to selected project role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2edc3425-4379-410b-80a8-5f38a48a5d82","name":"Assign Create Project Baseline Permission to Project Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{roleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">project_baseline</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:52:39 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 09:52:39 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"}],"_postman_id":"48262e8a-2096-4dc2-8790-36e8c546ce29"},{"name":"Create Package","event":[{"listen":"test","script":{"id":"3e929ff6-b7f2-433a-acf7-f39619d50d98","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","   ","    pm.environment.set(\"PackageID\",jsonData.id);","    ","if(postman.getEnvironmentVariable(\"count\") <= 2){","     pm.environment.set(\"PackageID\"+Number(postman.getEnvironmentVariable(\"count\"))+\"\", jsonData.id);","    pm.environment.set(\"PackageTitle\"+Number(postman.getEnvironmentVariable(\"count\"))+\"\", jsonData.title);","    postman.setEnvironmentVariable(\"count\",Number(postman.getEnvironmentVariable(\"count\"))+1);","    postman.setNextRequest(\"CreateRelease\");","}","else","{","    postman.setNextRequest(\"UploadFileForFRS\");","}","","tests[\"Successfully Created the Package\"] = responseCode.code === 201;",""]}},{"listen":"prerequest","script":{"id":"189f61f9-723a-4ea4-9b80-f59ac3eba29d","type":"text/javascript","exec":["pm.environment.set(\"rel_count\", \"1\");"]}}],"id":"fc11946f-0cc1-47d6-a437-6057ca88ac50","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Package\",\r\n  \"description\": \"Package created via REST API\",\r\n  \"published\": true\r\n}"},"url":"{{HostName}}/ctfrest/frs/v1/projects/{{projectId}}/packages","description":"<p>Creates a new package folder</p>\n","urlObject":{"path":["ctfrest","frs","v1","projects","{{projectId}}","packages"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"b4de40b6-6e62-4b7b-91ce-9497fb3c4aa4","name":"Create Package","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Package\",\r\n  \"description\": \"Package created via REST API\",\r\n  \"published\": true\r\n}"},"url":"{{HostName}}/ctfrest/frs/v1/projects/{{projectId}}/packages"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:54:07 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/frs/v1/packages/pkg1112"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"729"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetPackageEntity\",\n    \"id\": \"pkg1112\",\n    \"title\": \"Package266\",\n    \"description\": \"Package created via REST API\",\n    \"parentFolderId\": \"FrsApp2182\",\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/frs.package266\",\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T09:54:07.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T09:54:07.000+0000\",\n    \"published\": true,\n    \"downloaded\": 0,\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/packages/pkg1112\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/packages/pkg1112\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/packages/pkg1112\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"fc11946f-0cc1-47d6-a437-6057ca88ac50"},{"name":"Create Release","event":[{"listen":"test","script":{"id":"5ad29f11-975b-4962-8de2-a7e9c86cafb2","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","var i;","","if(postman.getEnvironmentVariable(\"rel_count\") <= 2){","      pm.environment.set(\"ReleaseID\"+Number(postman.getEnvironmentVariable(\"rel_count\"))+\"\", jsonData.id);","    pm.environment.set(\"ReleaseTitle\"+Number(postman.getEnvironmentVariable(\"rel_count\"))+\"\", jsonData.title);","    postman.setEnvironmentVariable(\"rel_count\",Number(postman.getEnvironmentVariable(\"rel_count\"))+1);","    postman.setNextRequest(\"CreateRelease\");","}","else","{","    postman.setNextRequest(\"CreatePackage\");","}","","","tests[\"Successfully Created the Release\"] = responseCode.code === 201;","",""]}},{"listen":"prerequest","script":{"id":"34d42ab5-6aea-4c30-839f-bb6848751eba","type":"text/javascript","exec":["pm.environment.set(\"Tagcount\", \"1\");"]}}],"id":"e0696a43-ab71-45cc-b25f-bce799c88a33","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Release\",\r\n  \"description\": \"Release created via REST API\",\r\n  \"status\": \"active\",\r\n  \"maturity\": \"Prototype\"\r\n}"},"url":"{{HostName}}/ctfrest/frs/v1/packages/{{PackageID}}/releases","description":"<p>Creates a new release folder</p>\n","urlObject":{"path":["ctfrest","frs","v1","packages","{{PackageID}}","releases"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"620abfe5-28f7-4271-8acf-81c6fd247aae","name":"Create Release","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Release\",\r\n  \"description\": \"Release created via REST API\",\r\n  \"status\": \"active\",\r\n  \"maturity\": \"Prototype\"\r\n}"},"url":"{{HostName}}/ctfrest/frs/v1/packages/{{PackageID}}/releases"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:54:49 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/frs/v1/releases/rel1147"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"759"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetReleaseEntity\",\n    \"id\": \"rel1147\",\n    \"title\": \"Release15\",\n    \"description\": \"Release created via REST API\",\n    \"status\": \"active\",\n    \"maturity\": \"Prototype\",\n    \"parentFolderId\": \"pkg1112\",\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/frs.package266.release15\",\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T09:54:48.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T09:54:48.000+0000\",\n    \"downloaded\": 0,\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/releases/rel1147\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/releases/rel1147\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/releases/rel1147\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"e0696a43-ab71-45cc-b25f-bce799c88a33"},{"name":"Upload Release File","event":[{"listen":"test","script":{"id":"72394b7e-9d95-48ab-a6d5-362f7d327414","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Frs_guid\", jsonData.guid);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"9f8ff129-a488-4fd0-8bbc-46e4f9874264","type":"text/javascript","exec":[""]}}],"id":"fce393fa-63e3-4750-abd3-76ba3abc456a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files","description":"<p>Uploads files specific to a release</p>\n","urlObject":{"path":["ctfrest","filestorage","v1","files"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"c484a66f-9b75-43e6-afa3-16619022bfc8","name":"Upload Release File","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:57:26 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"prefix\": null,\n    \"guid\": \"guid29e431a5c44e4111500633bf\"\n}"}],"_postman_id":"fce393fa-63e3-4750-abd3-76ba3abc456a"},{"name":"Create File in Release","event":[{"listen":"test","script":{"id":"3932295b-41a5-4101-a2be-2690aa1f7e6f","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"frs_id\", jsonData.id);","","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"c27b281a-9bc4-4025-aadc-ed1ec14372cc","type":"text/javascript","exec":[""]}}],"id":"b2c7e738-94cf-4396-a589-246b44da7d74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fileName\": \"Lighthouse.jpg\",\r\n  \"mimeType\": \"image/jpeg\",\r\n  \"fileId\": \"{{Frs_guid}}\"\r\n}"},"url":"{{HostName}}/ctfrest/frs/v1/releases/{{ReleaseID1}}/files","description":"<p>Creates a new file in selected release folder</p>\n","urlObject":{"path":["ctfrest","frs","v1","releases","{{ReleaseID1}}","files"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6c778753-b21f-475f-a7db-f151ff3fb782","name":"Create File in Release","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fileName\": \"Lighthouse.jpg\",\r\n  \"mimeType\": \"image/jpeg\",\r\n  \"fileId\": \"{{Frs_guid}}\"\r\n}"},"url":"{{HostName}}/ctfrest/frs/v1/releases/{{ReleaseID1}}/files"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:58:53 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/frs/v1/files/frs1054"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"753"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFileEntity\",\n    \"id\": \"frs1054\",\n    \"title\": \"Lighthouse.jpg\",\n    \"name\": \"frs1054\",\n    \"description\": null,\n    \"filename\": \"Lighthouse.jpg\",\n    \"mimeType\": \"image/jpeg\",\n    \"status\": \"active\",\n    \"contentKey\": \"fjlc2bf099dd290195727006342d\",\n    \"projectId\": \"proj1088\",\n    \"planningFolderId\": null,\n    \"teamId\": null,\n    \"path\": \"projects.baselineapiprojectwithdataset677/frs.package582.release140/frs1054\",\n    \"size\": 13159,\n    \"lightWeight\": false,\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T09:58:53.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T09:58:53.000+0000\",\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/files/frs1054\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/frs/v1/files/frs1054\",\n            \"method\": \"DELETE\"\n        }\n    },\n    \"version\": 100\n}"}],"_postman_id":"b2c7e738-94cf-4396-a589-246b44da7d74"},{"name":"Create Tag","event":[{"listen":"test","script":{"id":"61f883d2-1480-4668-8e5e-6401cfaa9603","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","//pm.environment.set(\"tag_id\", jsonData.id);","","tests[\"Successfully Created the Release\"] = responseCode.code === 201;","","if(postman.getEnvironmentVariable(\"Tagcount\") < 5){","    pm.environment.set(\"tag_id\"+postman.getEnvironmentVariable(\"Tagcount\")+\"\", jsonData.id);","    postman.setEnvironmentVariable(\"Tagcount\",Number(postman.getEnvironmentVariable(\"Tagcount\"))+1);","    postman.setNextRequest(\"CreateTag\");","}","else","{","    postman.setNextRequest(\"CreateTrackerUnits\");","}"]}},{"listen":"prerequest","script":{"id":"f8c77765-d731-4062-98bc-3d590657c889","type":"text/javascript","exec":[""]}}],"id":"136bb46f-1291-4b13-81de-54e065de5a7c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Tag1\",\r\n  \"description\": \"Regression Tag\"\r\n}"},"url":"{{HostName}}/ctfrest/tags/v1/projects/{{projectId}}/tags","description":"<p>Creates a new tag</p>\n","urlObject":{"path":["ctfrest","tags","v1","projects","{{projectId}}","tags"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"f5bb884a-d2be-4c53-a867-4e298fcfcac4","name":"Create Tag","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Tag1\",\r\n  \"description\": \"Regression Tag\"\r\n}"},"url":"{{HostName}}/ctfrest/tags/v1/projects/{{projectId}}/tags"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 09:59:36 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tags/v1/tags/tag1093"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"583"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"99\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"tag\",\n    \"projectId\": \"proj1088\",\n    \"id\": \"tag1093\",\n    \"name\": \"Tag1994\",\n    \"description\": \"Regression Tag\",\n    \"dateCreated\": \"2018-10-21T09:59:36.881+0000\",\n    \"dateLastModified\": \"2018-10-21T09:59:36.881+0000\",\n    \"createdById\": \"user1161\",\n    \"lastModifiedById\": \"user1161\",\n    \"version\": 99,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tags/v1/tags/tag1093\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tags/v1/tags/tag1093?$If-Match=W%2F%2299%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tags/v1/tags/tag1093\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"136bb46f-1291-4b13-81de-54e065de5a7c"},{"name":"Create Tracker Units","event":[{"listen":"prerequest","script":{"id":"3ad0275e-7cc4-4668-abcd-a790db0a5fa2","type":"text/javascript","exec":["pm.environment.set(\"TrackerCount\", \"0\");"]}},{"listen":"test","script":{"id":"1c5dfe11-89ba-41a8-a3d1-2650a68f21e6","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);"," pm.environment.set(\"TrackerUnitName\", jsonData.name);"," pm.environment.set(\"TrackerUnitId\", jsonData.id);"," "]}}],"id":"ea5f5ea3-778e-41c1-a0f7-537090b5740e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"TrackerUnit\",\r\n  \"multiplier\": \"2\",\r\n  \"baseUnit\": \"Hours\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/projects/{{projectId}}/trackerunit","description":"<p>Creates the units to be used for the Tracker fields</p>\n","urlObject":{"path":["ctfrest","tracker","v1","projects","{{projectId}}","trackerunit"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"d9bc312c-9c11-4323-868a-60a4b330e0ea","name":"Create Tracker Units","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"TrackerUnit\",\r\n  \"multiplier\": \"2\",\r\n  \"baseUnit\": \"Hours\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/projects/{{projectId}}/trackerunit"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:00:53 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/projects/proj1088/trackerunit"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"262"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetTrackerUnitEntity\",\n    \"id\": \"tknt1071\",\n    \"name\": \"TrackerUnit373\",\n    \"projectId\": \"proj1088\",\n    \"baseUnit\": \"tknt1070\",\n    \"multiplier\": 2,\n    \"displayOrder\": 1,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/projects/proj1088/trackerunit\"\n        }\n    }\n}"}],"_postman_id":"ea5f5ea3-778e-41c1-a0f7-537090b5740e"},{"name":"Create Tracker","event":[{"listen":"prerequest","script":{"id":"949f0e3e-ace4-4151-abab-c6bd46db9af5","type":"text/javascript","exec":["pm.environment.set(\"ArtifactCount\", \"0\");"]}},{"listen":"test","script":{"id":"fa121966-12a2-4ad7-9e7a-5afe2ce40e17","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);"," pm.environment.set(\"TrackerID\", jsonData.trackerId);"," ","if(postman.getEnvironmentVariable(\"TrackerCount\") < 3){","    postman.setEnvironmentVariable(\"TrackerCount\",Number(postman.getEnvironmentVariable(\"TrackerCount\"))+1);","    postman.setNextRequest(\"CreateArtifactInTracker\");","}","else","{","    postman.setNextRequest(\"CreateTrackerTextFF\");","}"]}}],"id":"ed4dbbfa-e109-4675-a010-7d27566b61bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Tracker\",\r\n  \"title\": \"Tracker\",\r\n  \"description\": \"Tracker created via Rest API\",\r\n  \"icon\": \"icon_23.png\",\r\n  \"trackerUnitId\": \"{{TrackerUnitId}}\",\r\n  \"autosumForeignChildren\": false\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/projects/{{projectId}}/trackers","description":"<p>Creates a new Tracker in the project</p>\n","urlObject":{"path":["ctfrest","tracker","v1","projects","{{projectId}}","trackers"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"929be063-2a92-4b19-ac0c-9107cce0221a","name":"Create Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"name\": \"Tracker\",\r\n  \"title\": \"Tracker\",\r\n  \"description\": \"Tracker created via Rest API\",\r\n  \"icon\": \"icon_23.png\",\r\n  \"trackerUnitId\": \"{{TrackerUnitId}}\",\r\n  \"autosumForeignChildren\": false\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/projects/{{projectId}}/trackers"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:03:12 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/trackers/tracker1189"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1028"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"104\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"tracker\",\n    \"title\": \"Tracker78\",\n    \"description\": \"Tracker created via Rest API\",\n    \"icon\": \"icon_23.png\",\n    \"trackerUnitId\": \"tknt1071\",\n    \"autosumForeignChildren\": false,\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/tracker.tracker967\",\n    \"parentFolderId\": \"TrackerApp2190\",\n    \"createdBy\": \"apiUser342\",\n    \"modifiedBy\": \"apiUser342\",\n    \"modifiedDate\": \"2018-10-21T10:03:12.000+0000\",\n    \"version\": 104,\n    \"_links\": {\n        \"clone\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/trackers/tracker1189/clone\",\n            \"method\": \"POST\"\n        },\n        \"icon\": {\n            \"href\": \"https://teamforge.collab.net/sf-images/tracker/icons/icon_23.png\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/trackers/tracker1189\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/trackers/tracker1189?$If-Match=W%2F%221%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/trackers/tracker1189\",\n            \"method\": \"DELETE\"\n        }\n    },\n    \"trackerId\": \"tracker1189\",\n    \"createdDate\": \"2018-10-21T10:03:11.000+0000\"\n}"}],"_postman_id":"ed4dbbfa-e109-4675-a010-7d27566b61bf"},{"name":"Create Artifact in Tracker","event":[{"listen":"test","script":{"id":"6bbfba6c-0e31-41a7-879a-63233d567266","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","if(postman.getEnvironmentVariable(\"ArtifactCount\") < 4){","    postman.setEnvironmentVariable(\"ArtifactCount\",Number(postman.getEnvironmentVariable(\"ArtifactCount\"))+1);","    postman.setNextRequest(\"CreateArtifactInTracker\");","}","else","{","    postman.setNextRequest(\"CreateTracker\");","}"]}}],"id":"be8336c4-d167-4ebb-a818-2f2dc4ce245e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Test Artifact\",\r\n  \"description\": \"Test Artifact\",\r\n  \"category\":\"\",\r\n  \"group\": \"\",\r\n  \"status\": \"Open\",\r\n  \"customer\": \"\",\r\n  \"priority\": 3,\r\n  \"estimatedEffort\": 20,\r\n  \"remainingEffort\": 10,\r\n  \"autoSumming\": false,\r\n  \"points\": 10,\r\n  \"autoSummingPoints\": false,\r\n  \"assignedTo\": \"\",\r\n  \"tagIds\": [\r\n    \"{{tag_id2}}\", \"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/artifacts","description":"<p>Creates a new artifact in selected Tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","artifacts"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"529124ce-3b5a-47a0-a0a5-b4f2786677f7","name":"Create Artifact in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Test Artifact\",\r\n  \"description\": \"Test Artifact\",\r\n  \"category\":\"\",\r\n  \"group\": \"\",\r\n  \"status\": \"Open\",\r\n  \"customer\": \"\",\r\n  \"priority\": 3,\r\n  \"estimatedEffort\": 20,\r\n  \"remainingEffort\": 10,\r\n  \"autoSumming\": false,\r\n  \"points\": 10,\r\n  \"autoSummingPoints\": false,\r\n  \"assignedTo\": \"\",\r\n  \"tagIds\": [\r\n    \"{{tag_id2}}\", \"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/artifacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:02:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1174"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetArtifactEntity\",\n    \"id\": \"artf1828\",\n    \"title\": \"Test Artifact645\",\n    \"description\": \"Test Artifact\",\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/tracker.tracker162/artf1828\",\n    \"folderId\": \"tracker1188\",\n    \"category\": \"\",\n    \"group\": \"\",\n    \"status\": \"Open\",\n    \"statusClass\": \"Open\",\n    \"customer\": \"\",\n    \"priority\": 3,\n    \"estimatedEffort\": 20,\n    \"actualEffort\": 0,\n    \"remainingEffort\": 10,\n    \"autoSumming\": false,\n    \"points\": 10,\n    \"autoSummingPoints\": false,\n    \"closeDate\": null,\n    \"assignedTo\": \"nobody\",\n    \"teamId\": null,\n    \"planningFolderId\": null,\n    \"tagIds\": [\n        \"tag1095\",\n        \"tag1094\"\n    ],\n    \"reportedReleasePath\": null,\n    \"reportedReleaseId\": null,\n    \"resolvedReleasePath\": null,\n    \"resolvedReleaseId\": null,\n    \"flexFields\": [],\n    \"lastModifiedBy\": \"apiUser342\",\n    \"createdBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:02:24.000+0000\",\n    \"createdDate\": \"2018-10-21T10:02:24.000+0000\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"},{"id":"8fa181ae-8dd6-4e4b-b6c6-0edd92cfcea9","name":"Create Artifact in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Test Artifact\",\r\n  \"description\": \"Test Artifact\",\r\n  \"category\":\"\",\r\n  \"group\": \"\",\r\n  \"status\": \"Open\",\r\n  \"customer\": \"\",\r\n  \"priority\": 3,\r\n  \"estimatedEffort\": 20,\r\n  \"remainingEffort\": 10,\r\n  \"autoSumming\": false,\r\n  \"points\": 10,\r\n  \"autoSummingPoints\": false,\r\n  \"assignedTo\": \"\",\r\n  \"tagIds\": [\r\n    \"{{tag_id2}}\", \"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/artifacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:02:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1174"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetArtifactEntity\",\n    \"id\": \"artf1828\",\n    \"title\": \"Test Artifact645\",\n    \"description\": \"Test Artifact\",\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/tracker.tracker162/artf1828\",\n    \"folderId\": \"tracker1188\",\n    \"category\": \"\",\n    \"group\": \"\",\n    \"status\": \"Open\",\n    \"statusClass\": \"Open\",\n    \"customer\": \"\",\n    \"priority\": 3,\n    \"estimatedEffort\": 20,\n    \"actualEffort\": 0,\n    \"remainingEffort\": 10,\n    \"autoSumming\": false,\n    \"points\": 10,\n    \"autoSummingPoints\": false,\n    \"closeDate\": null,\n    \"assignedTo\": \"nobody\",\n    \"teamId\": null,\n    \"planningFolderId\": null,\n    \"tagIds\": [\n        \"tag1095\",\n        \"tag1094\"\n    ],\n    \"reportedReleasePath\": null,\n    \"reportedReleaseId\": null,\n    \"resolvedReleasePath\": null,\n    \"resolvedReleaseId\": null,\n    \"flexFields\": [],\n    \"lastModifiedBy\": \"apiUser342\",\n    \"createdBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:02:24.000+0000\",\n    \"createdDate\": \"2018-10-21T10:02:24.000+0000\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1828\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"be8336c4-d167-4ebb-a818-2f2dc4ce245e"},{"name":"Create Text Flex Field in Tracker","event":[{"listen":"test","script":{"id":"f2089296-52bf-4a66-a628-c7084b817ef0","type":"text/javascript","exec":["tests[\"Successfully created Text Filed in a Tracker\"] = responseCode.code === 201;","","var jsonData=JSON.parse(responseBody);","pm.environment.set(\"TextFldID\", jsonData.id);"]}},{"listen":"prerequest","script":{"id":"e6beaecf-d04c-44f0-b852-629f4aa1aca3","type":"text/javascript","exec":["var randomVal = (Math.random()*1000);","var FldName = \"Text Field\"+(Math.round(randomVal));","pm.environment.set(\"TextFldName\", FldName);"]}}],"id":"e29ba301-b130-4cb9-93c1-a0e70e9eb2b1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{TextFldName}}\",\r\n  \"fieldDisplayType\": \"TEXT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"d\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Text Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields","description":"<p>Creates a text flex field for a specific tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"8bfb5b00-3550-452a-a7c5-a8765dff77b6","name":"Create Text Flex Field in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{TextFldName}}\",\r\n  \"fieldDisplayType\": \"TEXT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"d\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Text Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:04:52 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4758"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"879"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=9988"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4758\",\n    \"name\": \"Text Field918\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": \"text0\",\n    \"valueType\": \"String\",\n    \"displaySize\": 10,\n    \"displayLines\": 10,\n    \"displayType\": \"TEXT\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [],\n        \"paged\": false\n    },\n    \"defaultTextValue\": \"\",\n    \"helpText\": \"I'm a Text Field\",\n    \"pattern\": \"\\\\w\",\n    \"dateCreated\": \"2018-10-21T10:04:52.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:04:52.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4758\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4758?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4758\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"e29ba301-b130-4cb9-93c1-a0e70e9eb2b1"},{"name":"Create Single-select Flex Field in Tracker","event":[{"listen":"test","script":{"id":"e5e87197-5402-467d-b90e-3a8adec92bde","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"TkrSSFldID\", jsonData.id);","pm.environment.set(\"TkrSSFldVal1ID\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"TkrSSFldVal2ID\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"TkrSSFldVal3ID\", jsonData.fieldValues.items[2].id);","pm.environment.set(\"TkrSSFldValue1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"TkrSSFldValue2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"TkrSSFldValue3\", jsonData.fieldValues.items[2].value);","","tests[\"Successfully created Single Select Field in a Tracker\"] = responseCode.code === 201;"]}},{"listen":"prerequest","script":{"id":"79d5588e-b52c-4ad0-9741-c61f1dfbef21","type":"text/javascript","exec":["var randomVal = (Math.random()*1000);","","var SSFldName = \"Single Select\"+(Math.round(randomVal));","pm.environment.set(\"SSFldName\", SSFldName);"]}}],"id":"7aecf443-9451-4032-bce3-9796b706145e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{SSFldName}}\",\r\n  \"fieldDisplayType\": \"DROPDOWN\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Single Select Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields","description":"<p>Creates a single-select flex field for a specific tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"39a4c34a-e19e-4203-ac17-581b85e03149","name":"Create Single-select Flex Field in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{SSFldName}}\",\r\n  \"fieldDisplayType\": \"DROPDOWN\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Single Select Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:05:43 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4759"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1404"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4759\",\n    \"name\": \"Single Select931\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": \"fv0\",\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7053\",\n                \"value\": \"SSValue1\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7054\",\n                \"value\": \"SSValue2\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7055\",\n                \"value\": \"SSValue3\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm a Single Select Field\",\n    \"dateCreated\": \"2018-10-21T10:05:43.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:05:43.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/tracker1192/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4759\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4759?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4759\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"7aecf443-9451-4032-bce3-9796b706145e"},{"name":"Create Child Single-select Flex Field","event":[{"listen":"test","script":{"id":"c3353237-2677-4736-ac8a-962f5b9f45e5","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"TkrCSSFldID\", jsonData.id);","pm.environment.set(\"CSSFF_Val1ID\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"CSSFF_Val2ID\", jsonData.fieldValues.items[0].value);","","tests[\"Successfully created Child Single Select Field in a Tracker\"] = responseCode.code === 201;"]}},{"listen":"prerequest","script":{"id":"8f3337cd-e5ba-4cf3-9ea4-cfe1aee6f4be","type":"text/javascript","exec":["var randomVal = (Math.random()*1000);","","var FldName = \"ChildSingleSelect\"+(Math.round(randomVal));","pm.environment.set(\"CSSFldName\", FldName);"]}}],"id":"9a1c40dd-a03a-41b7-a5ee-1f33fd10d1ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{  \r\n   \"fieldName\":\"{{CSSFldName}}\",\r\n   \"fieldValues\":[  \r\n      \"CSSVal1\",\r\n      \"CSSVal2\"\r\n   ],\r\n   \"childParentFieldValues\":{  \r\n      \"CSSVal1\":[  \r\n         \"{{TkrSSFldVal1ID}}\"\r\n      ],\r\n      \"CSSVal2\":[  \r\n         \"{{TkrSSFldVal1ID}}\"\r\n      ]\r\n   },\r\n   \"helpText\":\"I'm a child single select field\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{TkrSSFldID}}/children","description":"<p>Creates a child single-select flex field for a specific Tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","fields","{{TkrSSFldID}}","children"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"e7beb13d-3ba9-4f4e-a768-9dac19c7c44c","name":"Create Child Single-select Flex Field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{  \r\n   \"fieldName\":\"{{CSSFldName}}\",\r\n   \"fieldValues\":[  \r\n      \"CSSVal1\",\r\n      \"CSSVal2\"\r\n   ],\r\n   \"childParentFieldValues\":{  \r\n      \"CSSVal1\":[  \r\n         \"{{TkrSSFldVal1ID}}\"\r\n      ],\r\n      \"CSSVal2\":[  \r\n         \"{{TkrSSFldVal1ID}}\"\r\n      ]\r\n   },\r\n   \"helpText\":\"I'm a child single select field\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{TkrSSFldID}}/children"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:06:16 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4760"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1310"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"W/\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4760\",\n    \"name\": \"ChildSingleSelect526\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": \"fv1\",\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"parentField\": \"fild4759\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7057\",\n                \"value\": \"CSSVal1\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": [\n                    \"fldv7053\"\n                ]\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7058\",\n                \"value\": \"CSSVal2\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": [\n                    \"fldv7053\"\n                ]\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm a child single select field\",\n    \"dateCreated\": \"2018-10-21T10:06:16.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:06:16.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/tracker1192/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4760\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4760?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4760\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"9a1c40dd-a03a-41b7-a5ee-1f33fd10d1ea"},{"name":"Create Multi-select Flex Field in Tracker","event":[{"listen":"test","script":{"id":"cf5ee047-b0f9-4108-967b-3157c74b5eb8","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"MSFF_ID\", jsonData.id);","pm.environment.set(\"MSFF_Val1ID\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"MSFF_Val2ID\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"MSFF_Val3ID\", jsonData.fieldValues.items[2].id);","pm.environment.set(\"MSFF_Value1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"MSFF_Value2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"MSFF_Value3\", jsonData.fieldValues.items[2].value);","","tests[\"Successfully created Multi-Select Field in a Tracker\"] = responseCode.code === 201;"]}},{"listen":"prerequest","script":{"id":"a18b6e0b-52f6-48e3-87c8-08eeb176b426","type":"text/javascript","exec":["var randomVal = (Math.random()*1000);","","var FldName = \"Multi Select\"+(Math.round(randomVal));","pm.environment.set(\"MSFldName\", FldName);"]}}],"id":"22077316-5ccf-4cff-84c0-f7719b960f67","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{MSFldName}}\",\r\n  \"fieldDisplayType\": \"MULTISELECT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Multi-Select Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields","description":"<p>Creates a multi-select flex field for a specific tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"13a6cdab-3a7e-4800-b958-c64d5822116f","name":"Create Multi-select Flex Field in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{MSFldName}}\",\r\n  \"fieldDisplayType\": \"MULTISELECT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Multi-Select Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:06:52 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4761"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1291"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4761\",\n    \"name\": \"Multi Select426\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": \"multiselect\",\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 10,\n    \"displayType\": \"MULTISELECT\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7060\",\n                \"value\": \"MSValue1\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7061\",\n                \"value\": \"MSValue2\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7062\",\n                \"value\": \"MSValue3\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm a Multi-Select Field\",\n    \"dateCreated\": \"2018-10-21T10:06:51.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:06:51.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4761\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4761?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4761\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"22077316-5ccf-4cff-84c0-f7719b960f67"},{"name":"Create User Flex Field in Tracker","event":[{"listen":"test","script":{"id":"83d304fb-8935-4f2f-aca1-61723fb54bd6","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"TkrUsrFldID\", jsonData.id);","","tests[\"Successfully created User Field in a Tracker\"] = responseCode.code === 201;"]}},{"listen":"prerequest","script":{"id":"08a352fa-e5ad-446a-8bf6-9e0bdadadb62","type":"text/javascript","exec":["var randomVal = (Math.random()*1000);","var UsrFldName = \"UserField\"+(Math.round(randomVal));","pm.environment.set(\"UsrFldName\", UsrFldName);"]}}],"id":"8744f844-303f-4de0-8621-29c9d88b537f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{UsrFldName}}\",\r\n  \"fieldDisplayType\": \"USER\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm an User Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\"{{apiUser}}\"],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields","description":"<p>Creates a user flex field for a specific tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"f6a735d0-e3bb-4568-9548-eaa386b2bd91","name":"Create User Flex Field in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{UsrFldName}}\",\r\n  \"fieldDisplayType\": \"USER\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm an User Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\"{{apiUser}}\"],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:07:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4762"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"895"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4762\",\n    \"name\": \"UserField380\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": \"user\",\n    \"valueType\": \"SfUser\",\n    \"displaySize\": 10,\n    \"displayLines\": 1,\n    \"displayType\": \"USER\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm an User Field\",\n    \"userFilter\": \"user_proj_member\",\n    \"userKeys\": [\n        \"user1161\"\n    ],\n    \"dateCreated\": \"2018-10-21T10:07:23.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:07:23.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4762\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4762?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4762\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"8744f844-303f-4de0-8621-29c9d88b537f"},{"name":"Create Date Flex Field in Tracker","event":[{"listen":"test","script":{"id":"0af07ea9-9d3e-4722-aa98-01f26ff5d727","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"TkrDtFldID\", jsonData.id);","","tests[\"Successfully created User Field in a Tracker\"] = responseCode.code === 201;"]}},{"listen":"prerequest","script":{"id":"d98cf029-b1b9-48da-8b39-4613241ac828","type":"text/javascript","exec":["var randomVal = (Math.random()*1000);","","var FldName = \"DateField\"+(Math.round(randomVal));","pm.environment.set(\"DtFldName\", FldName);"]}}],"id":"9cfaa44b-d226-43a3-a74f-8514a4d7ba0d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DtFldName}}\",\r\n  \"fieldDisplayType\": \"DATE\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"helpText\": \"I'm an Date Field\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields","description":"<p>Creates a Date flex field for a specific Tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"85ba495f-d6e7-42fb-a9c8-24100ca19307","name":"Create Date Flex Field in Tracker","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DtFldName}}\",\r\n  \"fieldDisplayType\": \"DATE\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"helpText\": \"I'm an Date Field\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:07:59 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4763"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"834"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4763\",\n    \"name\": \"DateField930\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": \"d0\",\n    \"valueType\": \"Date\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DATE\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm an Date Field\",\n    \"dateCreated\": \"2018-10-21T10:07:59.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:07:59.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4763\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4763?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4763\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"9cfaa44b-d226-43a3-a74f-8514a4d7ba0d"},{"name":"Get List of Fields in Tracker","event":[{"listen":"test","script":{"id":"fb03fb8b-3d57-4605-b339-a6bdacd61314","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","","var i=0;","for (i=0; i<22; i++){","    if(jsonData.items[i].name == \"category\"){","        pm.environment.set(\"Category_ID\", jsonData.items[i].id);","    }","    else if(jsonData.items[i].name == \"group\"){","         pm.environment.set(\"Group_ID\", jsonData.items[i].id);","    }","    else if(jsonData.items[i].name == \"status\"){","         pm.environment.set(\"Status_ID\", jsonData.items[i].id);","    }","    else if(jsonData.items[i].name == \"customer\"){","         pm.environment.set(\"Customer_ID\", jsonData.items[i].id);","    }","}","","","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"3e0064c4-4cd7-494d-9302-08d376af50f8","type":"text/javascript","exec":[""]}}],"id":"6e3c5cf3-3a2c-4b5c-888f-fc35fb55e318","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields","description":"<p>Gets the list of fields in a specific Tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6e3c5cf3-3a2c-4b5c-888f-fc35fb55e318"},{"name":"Update Category System Field","event":[{"listen":"test","script":{"id":"7216ffb4-6cdd-4b08-973a-eaddc67d7b88","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","","postman.setEnvironmentVariable(\"Category_val1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"Category_val2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"Category_val3\", jsonData.fieldValues.items[2].value);","pm.environment.set(\"Category_val1_Id\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"Category_val2_Id\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"Category_val3_Id\", jsonData.fieldValues.items[2].id);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"244622f1-7697-4f14-a14b-f91c3948f2d3","type":"text/javascript","exec":[""]}}],"id":"cf41430b-e361-40d8-8cc5-eed41674786d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"category\",\r\n  \"displaySize\": 1,\r\n  \"displayLines\": 1,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"Cat1\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"Cat2\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"Cat3\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Category field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Category_ID}}","description":"<p>Updates the system-defined field \"Category\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","fields","{{Category_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"9bab1662-e5cc-40ad-bf27-4b148936dc98","name":"Update Category System Field","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"category\",\r\n  \"displaySize\": 1,\r\n  \"displayLines\": 1,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"Cat1\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"Cat2\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"Cat3\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Category field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Category_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:09:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"1-gzip\""},{"key":"Content-Length","value":"540"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4744\",\n    \"name\": \"category\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": null,\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7063\",\n                \"value\": \"Cat1311\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7064\",\n                \"value\": \"Cat2540\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7065\",\n                \"value\": \"Cat3711\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"Category field\",\n    \"dateCreated\": \"2018-10-21T10:04:44.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:09:35.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 1,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/tracker1192/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4744\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4744?$If-Match=W%2F%221%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4744\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"cf41430b-e361-40d8-8cc5-eed41674786d"},{"name":"Update Group System Field","event":[{"listen":"test","script":{"id":"911c96f7-f170-4151-8bb9-a23b762044e5","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"Group_val1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"Group_val2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"Group_val3\", jsonData.fieldValues.items[2].value);","pm.environment.set(\"Group_val1_Id\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"Group_val2_Id\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"Group_val3_Id\", jsonData.fieldValues.items[2].id);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""]}},{"listen":"prerequest","script":{"id":"b1714db5-b019-4e02-8166-8a251eb60794","type":"text/javascript","exec":[""]}}],"id":"e803f062-6f9b-4578-98e0-e0696237f01a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"group\",\r\n  \"displaySize\": 0,\r\n  \"displayLines\": 0,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"group1\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"group2\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"group3\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Group field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Group_ID}}","description":"<p>Updates the system-defined field \"Group\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","fields","{{Group_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"bfecc5bf-8049-43ca-b5ae-36baf4f40b59","name":"Update Group System Field","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"group\",\r\n  \"displaySize\": 0,\r\n  \"displayLines\": 0,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"group1\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"group2\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"group3\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Group field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Group_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:10:24 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"1-gzip\""},{"key":"Content-Length","value":"539"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4742\",\n    \"name\": \"group\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": null,\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7066\",\n                \"value\": \"group1554\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7067\",\n                \"value\": \"group2955\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7068\",\n                \"value\": \"group3133\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"Group field\",\n    \"dateCreated\": \"2018-10-21T10:04:44.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:10:24.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 1,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/tracker1192/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4742\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4742?$If-Match=W%2F%221%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4742\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"e803f062-6f9b-4578-98e0-e0696237f01a"},{"name":"Update Status System Field","event":[{"listen":"test","script":{"id":"066a1630-9205-40e8-9e65-0671697c7d54","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"status_val\", jsonData.fieldValues.items[3].value);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","console.log(\"Category value\",pm.environment.get(\"customer_val1_Id\"));",""]}},{"listen":"prerequest","script":{"id":"dbfa669b-eb8a-46af-910a-1f3e55bdaa94","type":"text/javascript","exec":[""]}}],"id":"41056588-49fd-4f94-8f0d-c2a38bf10394","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"status\",\r\n  \"displaySize\": 1,\r\n  \"displayLines\": 1,\r\n  \"isRequired\": true,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"InProgress\",\r\n      \"valueClass\": \"Open\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Status field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Status_ID}}","description":"<p>Updates the system-defined field \"Status\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","fields","{{Status_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"a43a0cc8-0e68-45e8-bb52-b2929e3e61f6","name":"Update Status System Field","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"status\",\r\n  \"displaySize\": 1,\r\n  \"displayLines\": 1,\r\n  \"isRequired\": true,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"InProgress\",\r\n      \"valueClass\": \"Open\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Status field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Status_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:10:51 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"1-gzip\""},{"key":"Content-Length","value":"575"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4743\",\n    \"name\": \"status\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": null,\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"isRequired\": true,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7035\",\n                \"value\": \"Open\",\n                \"valueClass\": \"Open\",\n                \"isDefault\": true,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7036\",\n                \"value\": \"Closed\",\n                \"valueClass\": \"Close\",\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7037\",\n                \"value\": \"Pending\",\n                \"valueClass\": \"Open\",\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7069\",\n                \"value\": \"InProgress229\",\n                \"valueClass\": \"Open\",\n                \"isDefault\": false,\n                \"displayOrder\": 4,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"Status field\",\n    \"dateCreated\": \"2018-10-21T10:04:44.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:10:51.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 1,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/tracker1192/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4743\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4743?$If-Match=W%2F%221%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4743\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"41056588-49fd-4f94-8f0d-c2a38bf10394"},{"name":"Update Customer System Field","event":[{"listen":"test","script":{"id":"e13210d1-c206-4e06-b7d6-ff7875858218","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"customer_val1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"customer_val2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"customer_val3\", jsonData.fieldValues.items[2].value);","pm.environment.set(\"customer_val1_Id\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"customer_val2_Id\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"customer_val3_Id\", jsonData.fieldValues.items[2].id);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"3e2e60cf-40d1-4fc6-a411-fa57bd18553a","type":"text/javascript","exec":[""]}}],"id":"3875d7c7-77c7-4a7b-aa4c-c8acf1979e7f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"customer\",\r\n  \"displaySize\": 0,\r\n  \"displayLines\": 0,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"customer1\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"customer2\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"customer3\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Customer field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Customer_ID}}","description":"<p>Updates the system-defined field \"Customer\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","fields","{{Customer_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6ced3ade-144a-4bbc-a590-e7ced39c7a8e","name":"Update Customer System Field","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"customer\",\r\n  \"displaySize\": 0,\r\n  \"displayLines\": 0,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"customer1\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"customer2\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"customer3\",\r\n      \"valueClass\": \"string\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"parentFieldId\": \"string\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"\",\r\n  \"userFilter\": \"user_proj_member\",\r\n  \"helpText\": \"Customer field\",\r\n  \"pattern\": \"//w\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/fields/{{Customer_ID}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:11:14 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"ETag","value":"W/\"1-gzip\""},{"key":"Content-Length","value":"539"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4745\",\n    \"name\": \"customer\",\n    \"folderId\": \"tracker1192\",\n    \"memberName\": null,\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7070\",\n                \"value\": \"customer1153\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7071\",\n                \"value\": \"customer2157\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7072\",\n                \"value\": \"customer332\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"Customer field\",\n    \"dateCreated\": \"2018-10-21T10:04:44.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:11:14.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 1,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/tracker1192/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4745\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4745?$If-Match=W%2F%221%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/fields/fild4745\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"3875d7c7-77c7-4a7b-aa4c-c8acf1979e7f"},{"name":"Create Planning Folder","event":[{"listen":"prerequest","script":{"id":"5ba5d627-2e95-4d68-8979-ec3f8b8cf5d4","type":"text/javascript","exec":["var currentdate = new Date();","pm.environment.set(\"currentdate\", currentdate.toISOString());"]}},{"listen":"test","script":{"id":"4f4b0d4a-8da3-43d1-be60-1e727e920322","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"PF_title\", jsonData.title);","pm.environment.set(\"PF_Id\", jsonData.planningFolderId);","pm.environment.set(\"ParentPF_Id\", jsonData.parentFolderId);"]}}],"id":"c368c46d-cce6-4603-8a3f-366dcfe571c5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"plan\",\r\n  \"description\": \"Planning folder created via REST API\",\r\n  \"startDate\": \"2018-09-04\",\r\n  \"endDate\": \"2019-09-04\",\r\n  \"status\": \"In progress\",\r\n  \"capacity\": 4,\r\n  \"pointsCapacity\": 0,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"burnViewMode\": \"points\",\r\n  \"planningFolderType\": \"release\"\r\n}"},"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders","description":"<p>Creates a new planning folder in the project</p>\n","urlObject":{"path":["ctfrest","planning","v1","projects","{{projectId}}","planningfolders"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"226fa1c8-db93-468e-9b59-d9f921b8b940","name":"Create Planning Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"plan\",\r\n  \"description\": \"Planning folder created via REST API\",\r\n  \"startDate\": \"2018-09-04\",\r\n  \"endDate\": \"2019-09-04\",\r\n  \"status\": \"In progress\",\r\n  \"capacity\": 4,\r\n  \"pointsCapacity\": 0,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"burnViewMode\": \"points\",\r\n  \"planningFolderType\": \"release\"\r\n}"},"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:12:11 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1188"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"990"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"planningFolder\",\n    \"planningFolderId\": \"plan1188\",\n    \"projectId\": \"proj1088\",\n    \"parentFolderId\": \"PlanningApp2186\",\n    \"title\": \"plan486\",\n    \"description\": \"Planning folder created via REST API\",\n    \"startDate\": \"2018-09-04T00:00:00.000+0000\",\n    \"endDate\": \"2019-09-04T00:00:00.000+0000\",\n    \"status\": \"In progress\",\n    \"statusClass\": \"Visible\",\n    \"capacity\": -1,\n    \"pointsCapacity\": 0,\n    \"releasePath\": \"frs.package582.release140\",\n    \"releaseId\": \"rel1149\",\n    \"trackerUnitId\": \"tknt1070\",\n    \"burnViewMode\": \"points\",\n    \"planningFolderType\": \"release\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1188\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1188?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"list\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1188\",\n            \"method\": \"GET\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1188\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"c368c46d-cce6-4603-8a3f-366dcfe571c5"},{"name":"Create Child Planning Folder","event":[{"listen":"prerequest","script":{"id":"5b474991-8f0f-4768-8e01-5d47155056f1","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"b260b120-c8cc-4013-8291-7e640c67fffa","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});",""," var jsonData = JSON.parse(responseBody);"," pm.environment.set(\"ChildPF_title\", jsonData.title);"," pm.environment.set(\"ChildPF_Id\", jsonData.planningFolderId);"],"type":"text/javascript"}}],"id":"23caae32-f51f-4db0-84a7-df400660b745","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"parentFolderId\": \"{{PF_Id}}\",\r\n  \"title\": \"child_PF\",\r\n  \"description\": \"Child_Planning folder created via REST API\",\r\n  \"startDate\": \"2018-09-04\",\r\n  \"endDate\": \"2019-09-04\",\r\n  \"status\": \"In progress\",\r\n  \"capacity\": 4,\r\n  \"pointsCapacity\": 0,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"burnViewMode\": \"points\",\r\n  \"planningFolderType\": \"iteration\"\r\n}"},"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders","description":"<p>Creates a child planning folder under the parent planning folder</p>\n","urlObject":{"path":["ctfrest","planning","v1","projects","{{projectId}}","planningfolders"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"3cbda608-24e3-4d05-91e6-11f9cb82cb9d","name":"Create Child Planning Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"parentFolderId\": \"{{PF_Id}}\",\r\n  \"title\": \"child_PF\",\r\n  \"description\": \"Child_Planning folder created via REST API\",\r\n  \"startDate\": \"2018-09-04\",\r\n  \"endDate\": \"2019-09-04\",\r\n  \"status\": \"In progress\",\r\n  \"capacity\": 4,\r\n  \"pointsCapacity\": 0,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"burnViewMode\": \"points\",\r\n  \"planningFolderType\": \"iteration\"\r\n}"},"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:12:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1189"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"995"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"planningFolder\",\n    \"planningFolderId\": \"plan1189\",\n    \"projectId\": \"proj1088\",\n    \"parentFolderId\": \"plan1188\",\n    \"title\": \"child_PF823\",\n    \"description\": \"Child_Planning folder created via REST API\",\n    \"startDate\": \"2018-09-04T00:00:00.000+0000\",\n    \"endDate\": \"2019-09-04T00:00:00.000+0000\",\n    \"status\": \"In progress\",\n    \"statusClass\": \"Visible\",\n    \"capacity\": 4,\n    \"pointsCapacity\": -1,\n    \"releasePath\": \"frs.package582.release140\",\n    \"releaseId\": \"rel1149\",\n    \"trackerUnitId\": \"tknt1070\",\n    \"burnViewMode\": \"points\",\n    \"planningFolderType\": \"iteration\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1189\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1189?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"list\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1189\",\n            \"method\": \"GET\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1189\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"23caae32-f51f-4db0-84a7-df400660b745"},{"name":"Create Sub child Planning Folder","event":[{"listen":"prerequest","script":{"id":"fd5a892a-4485-406e-92d5-805e8e340690","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"e1affa44-90e1-4546-8db3-eb42746b8721","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});",""," var jsonData = JSON.parse(responseBody);"," pm.environment.set(\"SubChildPF_title\", jsonData.title);"," pm.environment.set(\"SubChildPF_Id\", jsonData.planningFolderId);"]}}],"id":"8c99a610-ae73-43e5-ac8d-aafa33c482b8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"parentFolderId\": \"{{ChildPF_Id}}\",\r\n  \"title\": \"SubChild_PF\",\r\n  \"description\": \"Sub child_Planning folder created via REST API\",\r\n  \"startDate\": \"2018-09-04\",\r\n  \"endDate\": \"2019-09-04\",\r\n  \"status\": \"In progress\",\r\n  \"capacity\": 4,\r\n  \"pointsCapacity\": 0,\r\n  \"burnViewMode\": \"points\",\r\n  \"planningFolderType\": \"standard\"\r\n}"},"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders","description":"<p>Creates a sub child planning folder under the child planning folder</p>\n","urlObject":{"path":["ctfrest","planning","v1","projects","{{projectId}}","planningfolders"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"bf7011e3-296e-4ef4-aa34-65dad1bc45ec","name":"Create Sub child Planning Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"parentFolderId\": \"{{ChildPF_Id}}\",\r\n  \"title\": \"SubChild_PF\",\r\n  \"description\": \"Sub child_Planning folder created via REST API\",\r\n  \"startDate\": \"2018-09-04\",\r\n  \"endDate\": \"2019-09-04\",\r\n  \"status\": \"In progress\",\r\n  \"capacity\": 4,\r\n  \"pointsCapacity\": 0,\r\n  \"burnViewMode\": \"points\",\r\n  \"planningFolderType\": \"standard\"\r\n}"},"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:12:55 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1190"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"968"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"planningFolder\",\n    \"planningFolderId\": \"plan1190\",\n    \"projectId\": \"proj1088\",\n    \"parentFolderId\": \"plan1189\",\n    \"title\": \"SubChild_PF624\",\n    \"description\": \"Sub child_Planning folder created via REST API\",\n    \"startDate\": \"2018-09-04T00:00:00.000+0000\",\n    \"endDate\": \"2019-09-04T00:00:00.000+0000\",\n    \"status\": \"In progress\",\n    \"statusClass\": \"Visible\",\n    \"capacity\": 4,\n    \"pointsCapacity\": 0,\n    \"releasePath\": \"\",\n    \"releaseId\": \"\",\n    \"trackerUnitId\": \"tknt1070\",\n    \"burnViewMode\": \"points\",\n    \"planningFolderType\": \"standard\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1190\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1190?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"list\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1190\",\n            \"method\": \"GET\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/planning/v1/planningfolders/plan1190\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"8c99a610-ae73-43e5-ac8d-aafa33c482b8"},{"name":"Create Team","event":[{"listen":"test","script":{"id":"ad26dec7-ec80-4524-b3df-ad8003a7f685","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Team_Id\", jsonData.teamId);","pm.environment.set(\"Team_title\", jsonData.title);","pm.environment.set(\"ParentTeam_Id\", jsonData.parentTeamId);"]}},{"listen":"prerequest","script":{"id":"7130565a-2faf-4986-8483-89ba2075dff7","type":"text/javascript","exec":[""]}}],"id":"4b704dda-6291-4273-a9bd-f1637679279c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Team\",\r\n  \"description\": \"Team created by REST API\",\r\n  \"parentTeamId\": \"\"\r\n}"},"url":"{{HostName}}/ctfrest/team/v1/projects/{{projectId}}/teams","description":"<p>Creates a team in the project</p>\n","urlObject":{"path":["ctfrest","team","v1","projects","{{projectId}}","teams"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"4ffb6237-78ee-4c67-82b1-c7dee8011c9a","name":"Create Team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Team\",\r\n  \"description\": \"Team created by REST API\",\r\n  \"parentTeamId\": \"\"\r\n}"},"url":"{{HostName}}/ctfrest/team/v1/projects/{{projectId}}/teams"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:13:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/team/v1/teams/team1132"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"712"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"99\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"team\",\n    \"teamId\": \"team1132\",\n    \"title\": \"Team907\",\n    \"description\": \"Team created by REST API\",\n    \"parentTeamId\": \"team-root\",\n    \"projectId\": \"proj1088\",\n    \"teamOwnerName\": null,\n    \"teamOwnerId\": null,\n    \"memberUserNames\": [],\n    \"version\": 99,\n    \"dateCreated\": \"2018-10-21T10:13:13.582+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:13:13.582+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"isDeleted\": false,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/team/v1/teams/team1132\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/team/v1/teams/team1132?$If-Match=W%2F%2299%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/team/v1/teams/team1132\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"4b704dda-6291-4273-a9bd-f1637679279c"},{"name":"Create Sub Team","event":[{"listen":"test","script":{"id":"1eeacddb-8216-4a53-9f2b-7b8401652ed8","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"SubTeam_Id\", jsonData.teamId);","pm.environment.set(\"SubTeam_title\", jsonData.title);"]}},{"listen":"prerequest","script":{"id":"568b6df6-824a-4d27-8201-4fa1befd079d","type":"text/javascript","exec":["pm.environment.set(\"ArtifactCount\", \"1\");"]}}],"id":"3ad91029-9af6-428e-a69b-077765dc82bc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Team\",\r\n  \"description\": \"Team created by REST API\",\r\n  \"parentTeamId\": \"{{Team_Id}}\"\r\n}"},"url":"{{HostName}}/ctfrest/team/v1/projects/{{projectId}}/teams","description":"<p>Creates a sub team under a team</p>\n","urlObject":{"path":["ctfrest","team","v1","projects","{{projectId}}","teams"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"9ba54229-dcd9-4182-a206-05cfe0b9a909","name":"Create Sub Team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Team\",\r\n  \"description\": \"Team created by REST API\",\r\n  \"parentTeamId\": \"{{Team_Id}}\"\r\n}"},"url":"{{HostName}}/ctfrest/team/v1/projects/{{projectId}}/teams"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:13:52 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/team/v1/teams/team1133"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"711"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"99\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"team\",\n    \"teamId\": \"team1133\",\n    \"title\": \"Team577\",\n    \"description\": \"Team created by REST API\",\n    \"parentTeamId\": \"team1132\",\n    \"projectId\": \"proj1088\",\n    \"teamOwnerName\": null,\n    \"teamOwnerId\": null,\n    \"memberUserNames\": [],\n    \"version\": 99,\n    \"dateCreated\": \"2018-10-21T10:13:52.378+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:13:52.378+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"isDeleted\": false,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/team/v1/teams/team1133\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/team/v1/teams/team1133?$If-Match=W%2F%2299%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/team/v1/teams/team1133\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"3ad91029-9af6-428e-a69b-077765dc82bc"},{"name":"Create Artifact in Planning Folder and Team","event":[{"listen":"test","script":{"id":"063302ed-b28c-42de-b9ca-24b0f85b17c4","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","if(postman.getEnvironmentVariable(\"ArtifactCount\") < 5){","    postman.setEnvironmentVariable(\"ArtifactCount\",Number(postman.getEnvironmentVariable(\"ArtifactCount\"))+1);","    postman.setNextRequest(\"CreateArtifactInPFAndTeam\");","}","else","{","    pm.environment.set(\"ArtifactCount\", \"1\");","    postman.setNextRequest(\"CreateArtifactInSubPFandSubTeam\");","}"]}},{"listen":"prerequest","script":{"id":"91b7b964-0664-4d41-b892-3499a48976f3","type":"text/javascript","exec":[""]}}],"id":"36513b2d-2885-4231-bbd0-3faebd23f0f6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"PF_Team_Artifact\",\r\n  \"description\": \"Pf artifact created via REST API\",\r\n  \"category\": \"{{Category_val1}}\",\r\n  \"group\": \"{{Group_val1}}\",\r\n  \"status\": \"Open\",\r\n  \"customer\": \"{{customer_val1}}\",\r\n  \"priority\": 2,\r\n  \"trackerId\": \"{{TrackerID}}\",\r\n  \"estimatedEffort\": 6,\r\n  \"remainingEffort\": 0,\r\n  \"autoSumming\": true,\r\n  \"points\": 4,\r\n  \"autoSummingPoints\": true,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"assignedTo\": \"\",\r\n  \"teamId\": \"{{Team_Id}}\",\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\", \"{{tag_id2}}\"\r\n  ],\r\n  \"flexfields\": [\r\n    {\r\n      \"name\": \"{{SSFldName}}\",\r\n      \"values\": [\r\n        \"{{TkrSSFldValue1}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{MSFldName}}\",\r\n      \"values\": [\r\n        \"{{MSFF_Value1}}\",\"{{MSFF_Value2}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{UsrFldName}}\",\r\n      \"values\": [\r\n        \"{{apiUser}}\"\r\n      ],\r\n      \"type\": \"USER\"\r\n    },\r\n    {\r\n      \"name\": \"{{CSSFldName}}\",\r\n      \"values\": [\r\n        \"{{CSSFF_Val1ID}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    }\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/planningfolders/{{PF_Id}}/artifacts","description":"<p>Creates an artifact in planning folder and team</p>\n","urlObject":{"path":["ctfrest","tracker","v1","planningfolders","{{PF_Id}}","artifacts"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"521b4ee2-7c25-4d6b-b8cd-e8d7a7de3e2a","name":"Create Artifact in Planning Folder and Team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"PF_Team_Artifact\",\r\n  \"description\": \"Pf artifact created via REST API\",\r\n  \"category\": \"{{Category_val1}}\",\r\n  \"group\": \"{{Group_val1}}\",\r\n  \"status\": \"Open\",\r\n  \"customer\": \"{{customer_val1}}\",\r\n  \"priority\": 2,\r\n  \"trackerId\": \"{{TrackerID}}\",\r\n  \"estimatedEffort\": 6,\r\n  \"remainingEffort\": 0,\r\n  \"autoSumming\": true,\r\n  \"points\": 4,\r\n  \"autoSummingPoints\": true,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"assignedTo\": \"\",\r\n  \"teamId\": \"{{Team_Id}}\",\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\", \"{{tag_id2}}\"\r\n  ],\r\n  \"flexfields\": [\r\n    {\r\n      \"name\": \"{{SSFldName}}\",\r\n      \"values\": [\r\n        \"{{TkrSSFldValue1}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{MSFldName}}\",\r\n      \"values\": [\r\n        \"{{MSFF_Value1}}\",\"{{MSFF_Value2}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{UsrFldName}}\",\r\n      \"values\": [\r\n        \"{{apiUser}}\"\r\n      ],\r\n      \"type\": \"USER\"\r\n    },\r\n    {\r\n      \"name\": \"{{CSSFldName}}\",\r\n      \"values\": [\r\n        \"{{CSSFF_Val1ID}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    }\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/planningfolders/{{PF_Id}}/artifacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:14:38 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1838"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1638"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetArtifactEntity\",\n    \"id\": \"artf1838\",\n    \"title\": \"PF_Team_Artifact699\",\n    \"description\": \"Pf artifact created via REST API\",\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/tracker.tracker759/artf1838\",\n    \"folderId\": \"tracker1192\",\n    \"category\": \"Cat1311\",\n    \"group\": \"group1554\",\n    \"status\": \"Open\",\n    \"statusClass\": \"Open\",\n    \"customer\": \"customer1153\",\n    \"priority\": 2,\n    \"estimatedEffort\": 0,\n    \"actualEffort\": 0,\n    \"remainingEffort\": 0,\n    \"autoSumming\": true,\n    \"points\": 0,\n    \"autoSummingPoints\": true,\n    \"closeDate\": null,\n    \"assignedTo\": \"nobody\",\n    \"teamId\": \"team1132\",\n    \"planningFolderId\": \"plan1188\",\n    \"tagIds\": [\n        \"tag1093\",\n        \"tag1094\"\n    ],\n    \"reportedReleasePath\": \"frs.package582.release140\",\n    \"reportedReleaseId\": \"rel1149\",\n    \"resolvedReleasePath\": null,\n    \"resolvedReleaseId\": null,\n    \"flexFields\": [\n        {\n            \"name\": \"Text Field918\",\n            \"values\": [\n                \"\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"Single Select931\",\n            \"values\": [\n                \"SSValue1\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"ChildSingleSelect526\",\n            \"values\": [\n                \"CSSVal1\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"Multi Select426\",\n            \"values\": [\n                \"MSValue1\",\n                \"MSValue2\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"UserField380\",\n            \"values\": [\n                \"apiUser342\"\n            ],\n            \"type\": \"USER\"\n        },\n        {\n            \"name\": \"DateField930\",\n            \"values\": null,\n            \"type\": \"DATE\"\n        }\n    ],\n    \"lastModifiedBy\": \"apiUser342\",\n    \"createdBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:14:37.000+0000\",\n    \"createdDate\": \"2018-10-21T10:14:37.000+0000\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1838\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1838?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1838\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"36513b2d-2885-4231-bbd0-3faebd23f0f6"},{"name":"Create Artifact in Sub Planning Folder and Sub Team","event":[{"listen":"test","script":{"id":"169b5434-b7f3-4bb7-a808-8d766cb3d934","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","if(postman.getEnvironmentVariable(\"ArtifactCount\") < 5){","    postman.setEnvironmentVariable(\"ArtifactCount\",Number(postman.getEnvironmentVariable(\"ArtifactCount\"))+1);","    postman.setNextRequest(\"CreateArtifactInSubPFandSubTeam\");","}","else","{","    postman.setNextRequest(\"GetPlanningFolderListInProject\");","}","","","//  {","//       \"name\": \"{{TextFldName}}\",","//       \"values\": [","//         \"Text field updated during create artifact\"","//       ],","//       \"type\": \"String\"","//     },"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"235191d9-1357-40aa-8f99-19990cb5324a","exec":[""],"type":"text/javascript"}}],"id":"33f3a780-7629-4ab8-a710-87f66396257b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"SubPF_SubTeam_Artifact\",\r\n  \"description\": \"Pf artifact created via REST API\",\r\n  \"category\": \"{{Category_val2}}\",\r\n  \"group\": \"{{Group_val3}}\",\r\n  \"status\": \"{{status_val}}\",\r\n  \"customer\": \"{{customer_val2}}\",\r\n  \"priority\": 3,\r\n  \"trackerId\": \"{{TrackerID}}\",\r\n  \"estimatedEffort\": 6,\r\n  \"remainingEffort\": 0,\r\n  \"autoSumming\": true,\r\n  \"points\": 4,\r\n  \"autoSummingPoints\": true,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"assignedTo\": \"\",\r\n  \"teamId\": \"{{SubTeam_Id}}\",\r\n  \"tagIds\": [\r\n    \"{{tag_id4}}\"\r\n  ],\r\n  \"flexfields\": [\r\n    {\r\n      \"name\": \"{{SSFldName}}\",\r\n      \"values\": [\r\n        \"{{TkrSSFldValue2}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{MSFldName}}\",\r\n      \"values\": [\r\n        \"{{MSFF_Value2}}\",\"{{MSFF_Value3}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{UsrFldName}}\",\r\n      \"values\": [\r\n        \"{{apiUser}}\"\r\n      ],\r\n      \"type\": \"USER\"\r\n    }\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/planningfolders/{{ChildPF_Id}}/artifacts","description":"<p>Creates an artifact in sub planning folder and sub team</p>\n","urlObject":{"path":["ctfrest","tracker","v1","planningfolders","{{ChildPF_Id}}","artifacts"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"747b721e-fd1f-4449-a12c-edbfa1b5c623","name":"Create Artifact in Sub Planning Folder and Sub Team","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"SubPF_SubTeam_Artifact\",\r\n  \"description\": \"Pf artifact created via REST API\",\r\n  \"category\": \"{{Category_val2}}\",\r\n  \"group\": \"{{Group_val3}}\",\r\n  \"status\": \"{{status_val}}\",\r\n  \"customer\": \"{{customer_val2}}\",\r\n  \"priority\": 3,\r\n  \"trackerId\": \"{{TrackerID}}\",\r\n  \"estimatedEffort\": 6,\r\n  \"remainingEffort\": 0,\r\n  \"autoSumming\": true,\r\n  \"points\": 4,\r\n  \"autoSummingPoints\": true,\r\n  \"releaseId\": \"{{ReleaseID1}}\",\r\n  \"assignedTo\": \"\",\r\n  \"teamId\": \"{{SubTeam_Id}}\",\r\n  \"tagIds\": [\r\n    \"{{tag_id4}}\"\r\n  ],\r\n  \"flexfields\": [\r\n    {\r\n      \"name\": \"{{SSFldName}}\",\r\n      \"values\": [\r\n        \"{{TkrSSFldValue2}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{MSFldName}}\",\r\n      \"values\": [\r\n        \"{{MSFF_Value2}}\",\"{{MSFF_Value3}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{UsrFldName}}\",\r\n      \"values\": [\r\n        \"{{apiUser}}\"\r\n      ],\r\n      \"type\": \"USER\"\r\n    }\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/planningfolders/{{ChildPF_Id}}/artifacts"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:16:12 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1843"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1636"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetArtifactEntity\",\n    \"id\": \"artf1843\",\n    \"title\": \"SubPF_SubTeam_Artifact205\",\n    \"description\": \"Pf artifact created via REST API\",\n    \"projectId\": \"proj1088\",\n    \"path\": \"projects.baselineapiprojectwithdataset677/tracker.tracker759/artf1843\",\n    \"folderId\": \"tracker1192\",\n    \"category\": \"Cat2540\",\n    \"group\": \"group3133\",\n    \"status\": \"InProgress229\",\n    \"statusClass\": \"Open\",\n    \"customer\": \"customer2157\",\n    \"priority\": 3,\n    \"estimatedEffort\": 0,\n    \"actualEffort\": 0,\n    \"remainingEffort\": 0,\n    \"autoSumming\": true,\n    \"points\": 0,\n    \"autoSummingPoints\": true,\n    \"closeDate\": null,\n    \"assignedTo\": \"nobody\",\n    \"teamId\": \"team1133\",\n    \"planningFolderId\": \"plan1189\",\n    \"tagIds\": [\n        \"tag1096\"\n    ],\n    \"reportedReleasePath\": \"frs.package582.release140\",\n    \"reportedReleaseId\": \"rel1149\",\n    \"resolvedReleasePath\": null,\n    \"resolvedReleaseId\": null,\n    \"flexFields\": [\n        {\n            \"name\": \"Text Field918\",\n            \"values\": [\n                \"\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"Single Select931\",\n            \"values\": [\n                \"SSValue2\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"ChildSingleSelect526\",\n            \"values\": [\n                \"\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"Multi Select426\",\n            \"values\": [\n                \"MSValue3\",\n                \"MSValue2\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"UserField380\",\n            \"values\": [\n                \"apiUser342\"\n            ],\n            \"type\": \"USER\"\n        },\n        {\n            \"name\": \"DateField930\",\n            \"values\": null,\n            \"type\": \"DATE\"\n        }\n    ],\n    \"lastModifiedBy\": \"apiUser342\",\n    \"createdBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:16:12.000+0000\",\n    \"createdDate\": \"2018-10-21T10:16:12.000+0000\",\n    \"version\": 100,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1843\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1843?$If-Match=W%2F%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1843\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"33f3a780-7629-4ab8-a710-87f66396257b"},{"name":"Get Root Planning Folder","event":[{"listen":"prerequest","script":{"id":"551b6fc4-89b0-4286-a83e-f5ed768aac7f","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1af7f3d6-55bf-40d7-a31b-d910e64e1bb1","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""]}}],"id":"ebc8dd22-5d7f-40f7-8d75-ffd471ca2767","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/planning/v1/projects/{{projectId}}/planningfolders?offset=0&count=25&recursive=false","description":"<p>Gets the root planning folder in project</p>\n","urlObject":{"path":["ctfrest","planning","v1","projects","{{projectId}}","planningfolders"],"host":["{{HostName}}"],"query":[{"key":"offset","value":"0"},{"key":"count","value":"25"},{"key":"recursive","value":"false"}],"variable":[]}},"response":[],"_postman_id":"ebc8dd22-5d7f-40f7-8d75-ffd471ca2767"},{"name":"Get Tracker List","event":[{"listen":"test","script":{"id":"c1920d9f-28f8-4f3b-81a1-a8a648d2add2","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","for(var i=0; i<=3; i++){","    postman.setEnvironmentVariable(\"TrackerID_\"+i+\"\", jsonData.trackers[i].id);","    postman.setEnvironmentVariable(\"TrackerTitle_\"+i+\"\", jsonData.trackers[i].title);","}"]}}],"id":"178c4197-ea7d-4e61-ac0a-85dcc9b8e8d6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/trackers/by-project/{{projectId}}","description":"<p>Gets the list of Trackers in the project</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","trackers","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"178c4197-ea7d-4e61-ac0a-85dcc9b8e8d6"},{"name":"Get Planning Folder List","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"id":"e08c60ec-0798-4e37-ae4f-aa6a8cfec615"}}],"id":"265e4d26-3ded-4e8d-a679-66efc715af52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/planningfolders/by-project/{{projectId}}","description":"<p>Gets the list of planning folders in the project</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","planningfolders","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"265e4d26-3ded-4e8d-a679-66efc715af52"},{"name":"Get Tracker Fields By Tracker ID","event":[{"listen":"test","script":{"id":"eaf5538a-d125-4159-a3d4-12c68e6ca6a3","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}}],"id":"06f42579-af16-4afe-a0fc-ab7a01e50a64","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/trackers/{{TrackerID}}/fields","description":"<p>Gets the Tracker fields using Tracker ID</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","trackers","{{TrackerID}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"06f42579-af16-4afe-a0fc-ab7a01e50a64"},{"name":"Upload Document for Root Document Folder","event":[{"listen":"test","script":{"id":"b78863ab-e9ba-495a-a1f4-192ff7a0a826","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Doc_guid\", jsonData.guid);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"751b4a7a-6bcb-4a0a-a282-7a8ea84a384a","type":"text/javascript","exec":[""]}}],"id":"4e1e5025-659e-446f-abc2-96b65c01b5f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files","description":"<p>Uploads the document file</p>\n","urlObject":{"path":["ctfrest","filestorage","v1","files"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"24163c20-182b-443a-b43f-72e64fcefc45","name":"Upload Document for Root Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:18:51 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"prefix\": null,\n    \"guid\": \"guid292e966622455fca700659fd\"\n}"}],"_postman_id":"4e1e5025-659e-446f-abc2-96b65c01b5f0"},{"name":"Create Document in Root Document Folder","event":[{"listen":"test","script":{"id":"d83cb2a7-fe70-4468-b27b-130e5f2c905e","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"DocId1\", jsonData.id);","pm.environment.set(\"DocRootFolderId\", jsonData.folderId);","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"bcf3f80f-d77d-4891-af7c-e1fcc12fd907","type":"text/javascript","exec":[""]}}],"id":"107a40e5-7224-4252-8c03-564553030c02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocumnetRF\",\r\n  \"description\": \"Document created in root folder\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"Koala.jpg\",\r\n  \"mimeType\": \"image/jpeg\",\r\n  \"fileId\": \"{{Doc_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id2}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/projects/{{projectId}}/documents","description":"<p>Creates a document in root document folder</p>\n","urlObject":{"path":["ctfrest","docman","v1","projects","{{projectId}}","documents"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"060257b8-9d37-4a09-b421-37ef634a6ee7","name":"Create Document in Root Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocumnetRF\",\r\n  \"description\": \"Document created in root folder\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"Koala.jpg\",\r\n  \"mimeType\": \"image/jpeg\",\r\n  \"fileId\": \"{{Doc_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id2}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/projects/{{projectId}}/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:21:17 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1106"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1447"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDetailedDocumentEntity\",\n    \"id\": \"doc1106\",\n    \"versionId\": \"docv1106\",\n    \"versionNumber\": 100,\n    \"projectPath\": \"projects.baselineapiprojectwithdataset677\",\n    \"projectTitle\": null,\n    \"projectId\": \"proj1088\",\n    \"folderTitle\": null,\n    \"folderId\": \"docf1167\",\n    \"folderPath\": \"docman.root\",\n    \"name\": \"doc1106\",\n    \"title\": \"DocumnetRF\",\n    \"description\": \"Document created in root folder\",\n    \"flexFields\": [],\n    \"createdBy\": \"apiUser342\",\n    \"dateCreated\": \"2018-10-21T10:21:17.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedByFullName\": null,\n    \"dateLastModified\": \"2018-10-21T10:21:17.000+0000\",\n    \"currentVersion\": 1,\n    \"dateVersionCreated\": \"2018-10-21T10:21:17.420+0000\",\n    \"versionCreatedBy\": \"apiUser342\",\n    \"versionStatus\": \"Draft\",\n    \"versionComment\": \"document created via REST API- version1\",\n    \"versionCreatedByFullname\": null,\n    \"mimeType\": \"image/jpeg\",\n    \"fileName\": \"Koala.jpg\",\n    \"fileSize\": 13159,\n    \"storedFileUrl\": null,\n    \"monitoringUserId\": null,\n    \"lockedBy\": null,\n    \"downloadRestricted\": false,\n    \"allowForceUnlock\": false,\n    \"versionDeletedBy\": null,\n    \"versionDeletedByFullname\": null,\n    \"isVersionDeleted\": false,\n    \"dateVersionDeleted\": null,\n    \"canDownload\": true,\n    \"tagNames\": [\n        \"tag1093\",\n        \"tag1095\",\n        \"tag1094\"\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1106\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1106?$If-Match=%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1106\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"},{"id":"715e33d9-c801-454c-8cd1-1222e6254d41","name":"Create Document in Root Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocumnetRF\",\r\n  \"description\": \"Document created in root folder\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"Koala.jpg\",\r\n  \"mimeType\": \"image/jpeg\",\r\n  \"fileId\": \"{{Doc_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id2}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/projects/{{projectId}}/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:19:36 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1105"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1447"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDetailedDocumentEntity\",\n    \"id\": \"doc1105\",\n    \"versionId\": \"docv1105\",\n    \"versionNumber\": 100,\n    \"projectPath\": \"projects.baselineapiprojectwithdataset677\",\n    \"projectTitle\": null,\n    \"projectId\": \"proj1088\",\n    \"folderTitle\": null,\n    \"folderId\": \"docf1167\",\n    \"folderPath\": \"docman.root\",\n    \"name\": \"doc1105\",\n    \"title\": \"DocumnetRF\",\n    \"description\": \"Document created in root folder\",\n    \"flexFields\": [],\n    \"createdBy\": \"apiUser342\",\n    \"dateCreated\": \"2018-10-21T10:19:35.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedByFullName\": null,\n    \"dateLastModified\": \"2018-10-21T10:19:35.000+0000\",\n    \"currentVersion\": 1,\n    \"dateVersionCreated\": \"2018-10-21T10:19:34.994+0000\",\n    \"versionCreatedBy\": \"apiUser342\",\n    \"versionStatus\": \"Draft\",\n    \"versionComment\": \"document created via REST API- version1\",\n    \"versionCreatedByFullname\": null,\n    \"mimeType\": \"image/jpeg\",\n    \"fileName\": \"Koala.jpg\",\n    \"fileSize\": 13159,\n    \"storedFileUrl\": null,\n    \"monitoringUserId\": null,\n    \"lockedBy\": null,\n    \"downloadRestricted\": false,\n    \"allowForceUnlock\": false,\n    \"versionDeletedBy\": null,\n    \"versionDeletedByFullname\": null,\n    \"isVersionDeleted\": false,\n    \"dateVersionDeleted\": null,\n    \"canDownload\": true,\n    \"tagNames\": [\n        \"tag1093\",\n        \"tag1095\",\n        \"tag1094\"\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1105\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1105?$If-Match=%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1105\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"107a40e5-7224-4252-8c03-564553030c02"},{"name":"Create Parent Document Folder","event":[{"listen":"test","script":{"id":"566db3a7-197e-48b5-97f9-7f7625448609","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"DocFolderId1\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"18bbd31f-02c0-49e6-a0df-3fde0655f59a","type":"text/javascript","exec":[""]}}],"id":"7efc9999-2e65-4019-acef-a4be2826214c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocFolder1\",\r\n  \"description\": \"Document folder created via REST API call\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocRootFolderId}}/documentfolders","description":"<p>Create a parent document folder under the root document folder</p>\n","urlObject":{"path":["ctfrest","docman","v1","documentfolders","{{DocRootFolderId}}","documentfolders"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"f1c09d5d-2bf0-49cd-b828-9b239bf7cfb1","name":"Create Parent Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocFolder1\",\r\n  \"description\": \"Document folder created via REST API call\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocRootFolderId}}/documentfolders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:21:49 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1168"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1140"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDocumentFolderEntity\",\n    \"id\": \"docf1168\",\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T10:21:49.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:21:49.000+0000\",\n    \"version\": 100,\n    \"path\": \"projects.baselineapiprojectwithdataset677/docman.root.docfolder1\",\n    \"title\": \"DocFolder1\",\n    \"description\": \"Document folder created via REST API call\",\n    \"projectId\": \"proj1088\",\n    \"parentId\": \"docf1167\",\n    \"_links\": {\n        \"getDocumentFolders\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1168/documentfolders\",\n            \"method\": \"GET\"\n        },\n        \"createDocumentFolder\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1168/documentfolders\",\n            \"method\": \"POST\"\n        },\n        \"getDocuments\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents\",\n            \"method\": \"GET\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1168\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1168\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1168\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"7efc9999-2e65-4019-acef-a4be2826214c"},{"name":"Create Child Document Folder","event":[{"listen":"test","script":{"id":"3fd629ca-7ab1-4223-b3cd-bc0fc220ff23","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"ChildDocFolderId\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"d16d633b-db18-44b4-802d-5d628a6ce816","type":"text/javascript","exec":[""]}}],"id":"34dc48ca-d88a-42b3-97d0-1eb8afb16f80","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"ChildDocFolder\",\r\n  \"description\": \"Child Document folder created via REST API call\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocFolderId1}}/documentfolders","description":"<p>Creates a child document folder under a parent document folder</p>\n","urlObject":{"path":["ctfrest","docman","v1","documentfolders","{{DocFolderId1}}","documentfolders"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"ec1e67cd-bf27-4ed0-b9c0-dabe6390d408","name":"Create Child Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"ChildDocFolder\",\r\n  \"description\": \"Child Document folder created via REST API call\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocFolderId1}}/documentfolders"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:22:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1169"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1165"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDocumentFolderEntity\",\n    \"id\": \"docf1169\",\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T10:22:23.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:22:23.000+0000\",\n    \"version\": 100,\n    \"path\": \"projects.baselineapiprojectwithdataset677/docman.root.docfolder1.childdocfolder\",\n    \"title\": \"ChildDocFolder\",\n    \"description\": \"Child Document folder created via REST API call\",\n    \"projectId\": \"proj1088\",\n    \"parentId\": \"docf1168\",\n    \"_links\": {\n        \"getDocumentFolders\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1169/documentfolders\",\n            \"method\": \"GET\"\n        },\n        \"createDocumentFolder\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1169/documentfolders\",\n            \"method\": \"POST\"\n        },\n        \"getDocuments\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents\",\n            \"method\": \"GET\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1169\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1169\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documentfolders/docf1169\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"34dc48ca-d88a-42b3-97d0-1eb8afb16f80"},{"name":"Upload Document for Parent Document Folder","event":[{"listen":"test","script":{"id":"9daaf139-d3f9-4e4a-8335-97b016822706","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Doc_pdf_guid\", jsonData.guid);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"ca0fa764-ba9e-42bb-9877-2a189c2c2ddc","type":"text/javascript","exec":[""]}}],"id":"d065b1b7-0832-41f8-94d8-7b65999b9d71","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files","description":"<p>Uploads a document for the parent document folder</p>\n","urlObject":{"path":["ctfrest","filestorage","v1","files"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"97b2931b-a4f2-461a-a71e-0f353818bb55","name":"Upload Document for Parent Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:24:40 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"prefix\": null,\n    \"guid\": \"guid697fe0c61036ecf9e0065d03\"\n}"}],"_postman_id":"d065b1b7-0832-41f8-94d8-7b65999b9d71"},{"name":"Create Document in Parent Document Folder","event":[{"listen":"test","script":{"id":"df511a21-ba65-45d4-b778-7aa286ca6e95","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"DocId2\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"775e8496-e5c3-4bd6-9300-7f588e318167","type":"text/javascript","exec":[""]}}],"id":"9b1ef3c8-7500-4821-993b-f0ab2e6b777e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Document1\",\r\n  \"description\": \"Document created in Folder1\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"test.pdf\",\r\n  \"mimeType\": \"application/pdf\",\r\n  \"fileId\": \"{{Doc_pdf_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocFolderId1}}/documents","description":"<p>Creates a document in parent document folder</p>\n","urlObject":{"path":["ctfrest","docman","v1","documentfolders","{{DocFolderId1}}","documents"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"0ed1cc1f-ed07-461a-a9b3-e173e8ab6330","name":"Create Document in Parent Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Document1\",\r\n  \"description\": \"Document created in Folder1\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"test.pdf\",\r\n  \"mimeType\": \"application/pdf\",\r\n  \"fileId\": \"{{Doc_pdf_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocFolderId1}}/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:25:10 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1107"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1447"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDetailedDocumentEntity\",\n    \"id\": \"doc1107\",\n    \"versionId\": \"docv1107\",\n    \"versionNumber\": 100,\n    \"projectPath\": \"projects.baselineapiprojectwithdataset677\",\n    \"projectTitle\": null,\n    \"projectId\": \"proj1088\",\n    \"folderTitle\": null,\n    \"folderId\": \"docf1168\",\n    \"folderPath\": \"docman.root.docfolder1\",\n    \"name\": \"doc1107\",\n    \"title\": \"Document1\",\n    \"description\": \"Document created in Folder1\",\n    \"flexFields\": [],\n    \"createdBy\": \"apiUser342\",\n    \"dateCreated\": \"2018-10-21T10:25:10.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedByFullName\": null,\n    \"dateLastModified\": \"2018-10-21T10:25:10.000+0000\",\n    \"currentVersion\": 1,\n    \"dateVersionCreated\": \"2018-10-21T10:25:09.975+0000\",\n    \"versionCreatedBy\": \"apiUser342\",\n    \"versionStatus\": \"Draft\",\n    \"versionComment\": \"document created via REST API- version1\",\n    \"versionCreatedByFullname\": null,\n    \"mimeType\": \"application/pdf\",\n    \"fileName\": \"test.pdf\",\n    \"fileSize\": 13159,\n    \"storedFileUrl\": null,\n    \"monitoringUserId\": null,\n    \"lockedBy\": null,\n    \"downloadRestricted\": false,\n    \"allowForceUnlock\": false,\n    \"versionDeletedBy\": null,\n    \"versionDeletedByFullname\": null,\n    \"isVersionDeleted\": false,\n    \"dateVersionDeleted\": null,\n    \"canDownload\": true,\n    \"tagNames\": [\n        \"tag1093\",\n        \"tag1095\"\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1107\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1107?$If-Match=%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1107\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"9b1ef3c8-7500-4821-993b-f0ab2e6b777e"},{"name":"Upload Document for Child Document Folder","event":[{"listen":"test","script":{"id":"c1c414bd-2e75-44e5-b3d4-1173dd885973","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Doc_csv_guid\", jsonData.guid);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"930005c9-46d0-43a5-b49a-d475d3144212","type":"text/javascript","exec":[""]}}],"id":"58adca93-acc7-4ee0-a883-0a5c63c255ea","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files","description":"<p>Uploads a document for child document folder</p>\n","urlObject":{"path":["ctfrest","filestorage","v1","files"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"8b612950-9a13-4b3f-99d1-f15376f9ec7d","name":"Upload Document for Child Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:26:07 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"prefix\": null,\n    \"guid\": \"guid4b95f6a3769e9a78e0065dfb\"\n}"}],"_postman_id":"58adca93-acc7-4ee0-a883-0a5c63c255ea"},{"name":"Create Document in Child Document Folder","event":[{"listen":"test","script":{"id":"d3c14508-ddf1-488e-bf28-a6ec3b8947a8","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"DocId3\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"7850fe01-dec7-493b-8205-7bcbe3937111","type":"text/javascript","exec":[""]}}],"id":"76016bd7-b843-42bf-bb2a-97f72b1af72d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"ChildDocument\",\r\n  \"description\": \"Child Document created in Folder1\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"Report.csv\",\r\n  \"mimeType\": \"text/csv\",\r\n  \"fileId\": \"{{Doc_csv_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{ChildDocFolderId}}/documents","description":"<p>Creates a document in child document folder</p>\n","urlObject":{"path":["ctfrest","docman","v1","documentfolders","{{ChildDocFolderId}}","documents"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"793e5507-ada7-4213-84d2-2bf55d355efc","name":"Create Document in Child Document Folder","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"ChildDocument\",\r\n  \"description\": \"Child Document created in Folder1\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"Report.csv\",\r\n  \"mimeType\": \"text/csv\",\r\n  \"fileId\": \"{{Doc_csv_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"tagIds\": [\r\n    \"{{tag_id1}}\",\"{{tag_id3}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{ChildDocFolderId}}/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:26:45 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1108"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1467"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDetailedDocumentEntity\",\n    \"id\": \"doc1108\",\n    \"versionId\": \"docv1108\",\n    \"versionNumber\": 100,\n    \"projectPath\": \"projects.baselineapiprojectwithdataset677\",\n    \"projectTitle\": null,\n    \"projectId\": \"proj1088\",\n    \"folderTitle\": null,\n    \"folderId\": \"docf1169\",\n    \"folderPath\": \"docman.root.docfolder1.childdocfolder\",\n    \"name\": \"doc1108\",\n    \"title\": \"ChildDocument\",\n    \"description\": \"Child Document created in Folder1\",\n    \"flexFields\": [],\n    \"createdBy\": \"apiUser342\",\n    \"dateCreated\": \"2018-10-21T10:26:44.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedByFullName\": null,\n    \"dateLastModified\": \"2018-10-21T10:26:44.000+0000\",\n    \"currentVersion\": 1,\n    \"dateVersionCreated\": \"2018-10-21T10:26:44.932+0000\",\n    \"versionCreatedBy\": \"apiUser342\",\n    \"versionStatus\": \"Draft\",\n    \"versionComment\": \"document created via REST API- version1\",\n    \"versionCreatedByFullname\": null,\n    \"mimeType\": \"text/csv\",\n    \"fileName\": \"Report.csv\",\n    \"fileSize\": 13159,\n    \"storedFileUrl\": null,\n    \"monitoringUserId\": null,\n    \"lockedBy\": null,\n    \"downloadRestricted\": false,\n    \"allowForceUnlock\": false,\n    \"versionDeletedBy\": null,\n    \"versionDeletedByFullname\": null,\n    \"isVersionDeleted\": false,\n    \"dateVersionDeleted\": null,\n    \"canDownload\": true,\n    \"tagNames\": [\n        \"tag1093\",\n        \"tag1095\"\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1108\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1108?$If-Match=%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1108\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"76016bd7-b843-42bf-bb2a-97f72b1af72d"},{"name":"Create Text Flex Field in Document","event":[{"listen":"test","script":{"id":"d5710441-4ebf-4903-a350-49ae02f7b9d2","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"DocTxtFldID\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"b6b1ec55-e66b-484c-8730-041743be1c24","type":"text/javascript","exec":["var randomVal = (Math.random()*100);","","var DocTxtFieldName = \"DocTxtField\"+(Math.round(randomVal));","pm.environment.set(\"DocTxtFieldName\", DocTxtFieldName);"]}}],"id":"da58e97a-c94c-42e7-9a3e-af5308d58ef2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocTxtFieldName}}\",\r\n  \"fieldDisplayType\": \"TEXT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"string\",\r\n      \"value\": \"d\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Text Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"t\",\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields","description":"<p>Creates a text flex field in a document</p>\n","urlObject":{"path":["ctfrest","docman","v1","documents","{{DocRootFolderId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"a4e64c72-5065-46b6-af97-523e8087e709","name":"Create Text Flex Field in Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocTxtFieldName}}\",\r\n  \"fieldDisplayType\": \"TEXT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"string\",\r\n      \"value\": \"d\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Text Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"t\",\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:27:28 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4764"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"873"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4764\",\n    \"name\": \"DocTxtField11\",\n    \"folderId\": \"docf1167\",\n    \"memberName\": \"text0\",\n    \"valueType\": \"String\",\n    \"displaySize\": 10,\n    \"displayLines\": 10,\n    \"displayType\": \"TEXT\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [],\n        \"paged\": false\n    },\n    \"defaultTextValue\": \"\",\n    \"helpText\": \"I'm a Text Field\",\n    \"pattern\": \"\\\\w\",\n    \"dateCreated\": \"2018-10-21T10:27:28.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:27:28.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4764\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4764?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4764\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"da58e97a-c94c-42e7-9a3e-af5308d58ef2"},{"name":"Create Single-select Flex Field in Document","event":[{"listen":"test","script":{"id":"90ae00d4-5fe4-4a4a-a420-f076deb231dc","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"DocSingleSelectFldID\", jsonData.id);","pm.environment.set(\"Doc_SSFF_Val1ID\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"Doc_SSFF_Val2ID\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"Doc_SSFF_Val3ID\", jsonData.fieldValues.items[2].id);","pm.environment.set(\"Doc_SSFF_Value1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"Doc_SSFF_Value2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"Doc_SSFF_Value3\", jsonData.fieldValues.items[2].value);","","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"d8c3f149-a056-4d97-b1c2-eeaaadb2423c","type":"text/javascript","exec":["var randomVal = (Math.random()*100);","","var DocSingleSelectFieldName = \"DocSingleSelectField\"+(Math.round(randomVal));","pm.environment.set(\"DocSingleSelectFieldName\", DocSingleSelectFieldName);"]}}],"id":"f920337e-9e62-47aa-8a4d-bd1f8bf6c64e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocSingleSelectFieldName}}\",\r\n  \"fieldDisplayType\": \"DROPDOWN\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Single Select Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields","description":"<p>Creates a single-select flex field in document</p>\n","urlObject":{"path":["ctfrest","docman","v1","documents","{{DocRootFolderId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"1754fd36-0477-4a96-8861-57583938a27b","name":"Create Single-select Flex Field in Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocSingleSelectFieldName}}\",\r\n  \"fieldDisplayType\": \"DROPDOWN\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a Single Select Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:30:44 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4765"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1400"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4765\",\n    \"name\": \"DocSingleSelectField64\",\n    \"folderId\": \"docf1167\",\n    \"memberName\": \"fv0\",\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DROPDOWN\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7073\",\n                \"value\": \"SSValue1\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7074\",\n                \"value\": \"SSValue2\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7075\",\n                \"value\": \"SSValue3\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm a Single Select Field\",\n    \"dateCreated\": \"2018-10-21T10:30:44.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:30:44.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"createChild\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/docf1167/children\",\n            \"method\": \"POST\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4765\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4765?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4765\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"f920337e-9e62-47aa-8a4d-bd1f8bf6c64e"},{"name":"Create Multi-select Flex Field in Document","event":[{"listen":"test","script":{"id":"fe04c31a-4b06-4428-9add-b93d4b29f152","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"DocMultiSelectFldID\", jsonData.id);","pm.environment.set(\"Doc_MSFF_Val1ID\", jsonData.fieldValues.items[0].id);","pm.environment.set(\"Doc_MSFF_Val2ID\", jsonData.fieldValues.items[1].id);","pm.environment.set(\"Doc_MSFF_Val3ID\", jsonData.fieldValues.items[2].id);","pm.environment.set(\"Doc_MSFF_Value1\", jsonData.fieldValues.items[0].value);","pm.environment.set(\"Doc_MSFF_Value2\", jsonData.fieldValues.items[1].value);","pm.environment.set(\"Doc_MSFF_Value3\", jsonData.fieldValues.items[2].value);","","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"df784f0d-6ff7-4729-83db-870996292679","type":"text/javascript","exec":["var randomVal = (Math.random()*100);","","var DocMultiSelectFieldName = \"DocMultiSelectField\"+(Math.round(randomVal));","pm.environment.set(\"DocMultiSelectFieldName\", DocMultiSelectFieldName);",""]}}],"id":"cb98482f-4c41-43f8-a28b-c1e26982974e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocMultiSelectFieldName}}\",\r\n  \"fieldDisplayType\": \"MULTISELECT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a multi select  Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"t\",\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields","description":"<p>Creates a multi-select flex field in document</p>\n","urlObject":{"path":["ctfrest","docman","v1","documents","{{DocRootFolderId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"f51d69d3-8e23-43a4-8643-dae6a95e740d","name":"Create Multi-select Flex Field in Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocMultiSelectFieldName}}\",\r\n  \"fieldDisplayType\": \"MULTISELECT\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"MSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm a multi select  Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\r\n    \"string\"\r\n  ],\r\n  \"defaultTextValue\": \"t\",\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:32:55 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4766"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1292"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4766\",\n    \"name\": \"DocMultiSelectField67\",\n    \"folderId\": \"docf1167\",\n    \"memberName\": \"multiselect\",\n    \"valueType\": \"String\",\n    \"displaySize\": 1,\n    \"displayLines\": 10,\n    \"displayType\": \"MULTISELECT\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7077\",\n                \"value\": \"MSValue1\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 1,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7078\",\n                \"value\": \"MSValue2\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 2,\n                \"dependentValues\": null\n            },\n            {\n                \"_type\": \"GetFieldValueEntity\",\n                \"id\": \"fldv7079\",\n                \"value\": \"MSValue3\",\n                \"valueClass\": null,\n                \"isDefault\": false,\n                \"displayOrder\": 3,\n                \"dependentValues\": null\n            }\n        ],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm a multi select  Field\",\n    \"dateCreated\": \"2018-10-21T10:32:55.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:32:55.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4766\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4766?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4766\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"cb98482f-4c41-43f8-a28b-c1e26982974e"},{"name":"Create Date Flex Field in Document","event":[{"listen":"test","script":{"id":"0e0867a3-def5-408d-9f05-210768259c8a","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"DocDateFieldID\", jsonData.id);","","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"e5b2a966-c05d-4b0d-a6f7-a3826b08ee26","type":"text/javascript","exec":["var randomVal = (Math.random()*100);","","var DocDateFieldName = \"DocDateField\"+(Math.round(randomVal));","pm.environment.set(\"DocDateFieldName\", DocDateFieldName);"]}}],"id":"8f7f07b6-ec7b-4728-8e9c-12b16dc1b213","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocDateFieldName}}\",\r\n  \"fieldDisplayType\": \"DATE\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm an User Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\"{{TkrAdminUser}}\"],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields","description":"<p>Creates a Date flex field in document</p>\n","urlObject":{"path":["ctfrest","docman","v1","documents","{{DocRootFolderId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"4701ce92-7412-4b7c-86ab-1d438db5e986","name":"Create Date Flex Field in Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocDateFieldName}}\",\r\n  \"fieldDisplayType\": \"DATE\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm an User Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\"{{TkrAdminUser}}\"],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:34:11 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4767"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"830"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4767\",\n    \"name\": \"DocDateField85\",\n    \"folderId\": \"docf1167\",\n    \"memberName\": \"d0\",\n    \"valueType\": \"Date\",\n    \"displaySize\": 1,\n    \"displayLines\": 1,\n    \"displayType\": \"DATE\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm an User Field\",\n    \"dateCreated\": \"2018-10-21T10:34:11.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:34:11.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4767\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4767?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4767\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"8f7f07b6-ec7b-4728-8e9c-12b16dc1b213"},{"name":"Create User Flex Field in Document","event":[{"listen":"test","script":{"id":"8a604c05-e658-4d00-8c41-d2ae8656ddf6","type":"text/javascript","exec":["var jsonData=JSON.parse(responseBody);","pm.environment.set(\"DocUserFldID\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"409800be-e735-4162-ba88-8cd1ef7621c9","type":"text/javascript","exec":["var randomVal = (Math.random()*100);","","var DocUserFieldName = \"DocUserField\"+(Math.round(randomVal));","pm.environment.set(\"DocUserFieldName\", DocUserFieldName);",""]}}],"id":"6ad241bb-b938-484e-ba18-0afe4100eac7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocUserFieldName}}\",\r\n  \"fieldDisplayType\": \"USER\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm an User Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\"{{apiUser}}\"],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields","description":"<p>Creates a user flex field in document</p>\n","urlObject":{"path":["ctfrest","docman","v1","documents","{{DocRootFolderId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"f8e99c5a-c4f7-4284-9ff0-0eabb118b761","name":"Create User Flex Field in Document","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"fieldName\": \"{{DocUserFieldName}}\",\r\n  \"fieldDisplayType\": \"USER\",\r\n  \"displaySize\": 10,\r\n  \"displayLines\": 10,\r\n  \"isRequired\": false,\r\n  \"isDisabled\": false,\r\n  \"isHiddenOnCreate\": false,\r\n  \"fieldValues\": [\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue1\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue2\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    },\r\n    {\r\n      \"id\": \"\",\r\n      \"value\": \"SSValue3\",\r\n      \"isDefault\": false,\r\n      \"isDeleted\": false\r\n    }\r\n  ],\r\n  \"helpText\": \"I'm an User Field\",\r\n  \"pattern\": \"\\\\w\",\r\n  \"defaultUsers\": [\"{{apiUser}}\"],\r\n  \"userFilter\": \"user_proj_member\"\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:35:53 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4768"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"891"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"0\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetFieldEntity\",\n    \"id\": \"fild4768\",\n    \"name\": \"DocUserField81\",\n    \"folderId\": \"docf1167\",\n    \"memberName\": \"user\",\n    \"valueType\": \"SfUser\",\n    \"displaySize\": 10,\n    \"displayLines\": 1,\n    \"displayType\": \"USER\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"isHiddenOnCreate\": false,\n    \"fieldValues\": {\n        \"_type\": \"collection\",\n        \"items\": [],\n        \"paged\": false\n    },\n    \"helpText\": \"I'm an User Field\",\n    \"userFilter\": \"user_proj_member\",\n    \"userKeys\": [\n        \"user1161\"\n    ],\n    \"dateCreated\": \"2018-10-21T10:35:53.000+0000\",\n    \"createdBy\": \"apiUser342\",\n    \"dateLastModified\": \"2018-10-21T10:35:53.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"version\": 0,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4768\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4768?$If-Match=W%2F%220%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4768\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"6ad241bb-b938-484e-ba18-0afe4100eac7"},{"name":"Upload Document - Flex Fields","event":[{"listen":"test","script":{"id":"6b584f52-3527-4696-a472-f235f83b3ede","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Doc_text_guid\", jsonData.guid);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}},{"listen":"prerequest","script":{"id":"3b607880-70f9-4c70-b78f-59ec855e99d2","type":"text/javascript","exec":[""]}}],"id":"c55147cf-2fce-413b-be86-53a2961c8152","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","value":""}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files","description":"<p>Upload a file in a document with flex fields</p>\n","urlObject":{"path":["ctfrest","filestorage","v1","files"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"86ba1cc1-e9d1-42b5-8136-db05acbb8f3a","name":"Upload Document - Flex Fields","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"formdata","formdata":[{"key":"file","type":"file","src":[]}]},"url":"{{HostName}}/ctfrest/filestorage/v1/files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:38:29 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"prefix\": null,\n    \"guid\": \"guid88c7c2ad5b7d9307800662f5\"\n}"}],"_postman_id":"c55147cf-2fce-413b-be86-53a2961c8152"},{"name":"Create Document in Root Document Folder with Flex Fields","event":[{"listen":"test","script":{"id":"a01518ba-6abd-41b8-b9a8-0deed6425ee4","type":"text/javascript","exec":["var jsonData = JSON.parse(responseBody);","pm.environment.set(\"DocId_flex\", jsonData.id);","","pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});"]}},{"listen":"prerequest","script":{"id":"70eaea70-4ddd-435b-847a-b0d92a33d455","type":"text/javascript","exec":[""]}}],"id":"2728de3b-71f8-4331-8163-5a3b81b0b73a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocumnetRF_With_flexfields\",\r\n  \"description\": \"Document created in root folder via REST API\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"link.txt\",\r\n  \"mimeType\": \"text/plain\",\r\n  \"fileId\": \"{{Doc_text_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"flexFields\": [\r\n    {\r\n      \"name\": \"{{DocTxtFldID}}\",\r\n      \"values\": [\r\n        \"TExt field updated in document\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{DocSingleSelectFldID}}\",\r\n      \"values\": [\r\n        \"{{Doc_SSFF_Value1}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{DocMultiSelectFldID}}\",\r\n      \"values\": [\r\n        \"{{Doc_MSFF_Value1}}\",\"{{Doc_SSFF_Value3}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{DocUserFldID}}\",\r\n      \"values\": [\r\n        \"{{apiUserID}}\"\r\n      ],\r\n      \"type\": \"USER\"\r\n    }\r\n  ],\r\n  \"tagIds\": [\r\n    \"{{tag_id4}}\",\"{{tag_id2}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/projects/{{projectId}}/documents","description":"<p>Creates a document in root document folder with flex fields</p>\n","urlObject":{"path":["ctfrest","docman","v1","projects","{{projectId}}","documents"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"13517410-c707-437f-9a4c-4e558e704791","name":"Create Document in Root Document Folder with Flex Fields","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"DocumnetRF_With_flexfields\",\r\n  \"description\": \"Document created in root folder via REST API\",\r\n  \"status\": \"Draft\",\r\n  \"fileName\": \"link.txt\",\r\n  \"mimeType\": \"text/plain\",\r\n  \"fileId\": \"{{Doc_text_guid}}\",\r\n  \"versionComment\": \"document created via REST API- version1\",\r\n  \"createLocked\": false,\r\n  \"createDownloadRestricted\": false,\r\n  \"allowForceUnlock\": false,\r\n  \"flexFields\": [\r\n    {\r\n      \"name\": \"{{DocTxtFldID}}\",\r\n      \"values\": [\r\n        \"TExt field updated in document\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{DocSingleSelectFldID}}\",\r\n      \"values\": [\r\n        \"{{Doc_SSFF_Value1}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{DocMultiSelectFldID}}\",\r\n      \"values\": [\r\n        \"{{Doc_MSFF_Value1}}\",\"{{Doc_SSFF_Value3}}\"\r\n      ],\r\n      \"type\": \"String\"\r\n    },\r\n    {\r\n      \"name\": \"{{DocUserFldID}}\",\r\n      \"values\": [\r\n        \"{{apiUserID}}\"\r\n      ],\r\n      \"type\": \"USER\"\r\n    }\r\n  ],\r\n  \"tagIds\": [\r\n    \"{{tag_id4}}\",\"{{tag_id2}}\"\r\n  ]\r\n}"},"url":"{{HostName}}/ctfrest/docman/v1/projects/{{projectId}}/documents"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:42:24 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1109"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1754"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"GetDetailedDocumentEntity\",\n    \"id\": \"doc1109\",\n    \"versionId\": \"docv1109\",\n    \"versionNumber\": 100,\n    \"projectPath\": \"projects.baselineapiprojectwithdataset677\",\n    \"projectTitle\": null,\n    \"projectId\": \"proj1088\",\n    \"folderTitle\": null,\n    \"folderId\": \"docf1167\",\n    \"folderPath\": \"docman.root\",\n    \"name\": \"doc1109\",\n    \"title\": \"DocumnetRF_With_flexfields\",\n    \"description\": \"Document created in root folder via REST API\",\n    \"flexFields\": [\n        {\n            \"name\": \"DocTxtField11\",\n            \"values\": [\n                \"\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"DocSingleSelectField64\",\n            \"values\": [\n                \"\"\n            ],\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"DocMultiSelectField67\",\n            \"values\": null,\n            \"type\": \"String\"\n        },\n        {\n            \"name\": \"DocDateField85\",\n            \"values\": null,\n            \"type\": \"DATE\"\n        },\n        {\n            \"name\": \"DocUserField81\",\n            \"values\": null,\n            \"type\": \"USER\"\n        }\n    ],\n    \"createdBy\": \"apiUser342\",\n    \"dateCreated\": \"2018-10-21T10:42:23.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedByFullName\": null,\n    \"dateLastModified\": \"2018-10-21T10:42:23.000+0000\",\n    \"currentVersion\": 1,\n    \"dateVersionCreated\": \"2018-10-21T10:42:23.895+0000\",\n    \"versionCreatedBy\": \"apiUser342\",\n    \"versionStatus\": \"Draft\",\n    \"versionComment\": \"document created via REST API- version1\",\n    \"versionCreatedByFullname\": null,\n    \"mimeType\": \"text/plain\",\n    \"fileName\": \"link.txt\",\n    \"fileSize\": 13159,\n    \"storedFileUrl\": null,\n    \"monitoringUserId\": null,\n    \"lockedBy\": null,\n    \"downloadRestricted\": false,\n    \"allowForceUnlock\": false,\n    \"versionDeletedBy\": null,\n    \"versionDeletedByFullname\": null,\n    \"isVersionDeleted\": false,\n    \"dateVersionDeleted\": null,\n    \"canDownload\": true,\n    \"tagNames\": [\n        \"tag1096\",\n        \"tag1094\"\n    ],\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1109\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1109?$If-Match=%22100%22\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/doc1109\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"2728de3b-71f8-4331-8163-5a3b81b0b73a"},{"name":"Get List of Document Fields","event":[{"listen":"test","script":{"id":"d7990d3e-318b-4d74-b5c8-5be9fb0e8aac","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","if(jsonData.items[0].name == \"status\"){","    pm.environment.set(\"doc_status_Id\", jsonData.items[0].id);","}"],"type":"text/javascript"}}],"id":"fa66f28d-01c3-4e3c-a316-d30b0493429e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields","description":"<p>Gets the list of documents fields using document root folder ID.</p>\n","urlObject":{"path":["ctfrest","docman","v1","documents","{{DocRootFolderId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6a5fe83d-4d50-42ed-8c09-08162d4a9ea4","name":"Get List of Document Fields","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/docman/v1/documents/{{DocRootFolderId}}/fields"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 11:26:07 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"1075"},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"collection\",\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/documents/docf1163/fields\"\n        }\n    },\n    \"items\": [\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4595\",\n            \"name\": \"status\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": null,\n            \"valueType\": \"String\",\n            \"displaySize\": 1,\n            \"displayLines\": 1,\n            \"displayType\": \"DROPDOWN\",\n            \"isRequired\": true,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6814\",\n                        \"value\": \"Draft\",\n                        \"valueClass\": \"Open\",\n                        \"isDefault\": true,\n                        \"displayOrder\": 1,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6815\",\n                        \"value\": \"Final\",\n                        \"valueClass\": \"Close\",\n                        \"isDefault\": false,\n                        \"displayOrder\": 2,\n                        \"dependentValues\": null\n                    }\n                ],\n                \"paged\": false\n            },\n            \"dateCreated\": \"2018-10-17T05:22:44.000+0000\",\n            \"createdBy\": \"admin\",\n            \"dateLastModified\": \"2018-10-17T05:22:44.000+0000\",\n            \"lastModifiedBy\": \"admin\",\n            \"version\": 0,\n            \"_links\": {\n                \"createChild\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/docf1163/children\",\n                    \"method\": \"POST\"\n                },\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4595\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4595?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4595\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        },\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4666\",\n            \"name\": \"DocTxtField75\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": \"text0\",\n            \"valueType\": \"String\",\n            \"displaySize\": 10,\n            \"displayLines\": 10,\n            \"displayType\": \"TEXT\",\n            \"isRequired\": false,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [],\n                \"paged\": false\n            },\n            \"helpText\": \"I'm a Text Field\",\n            \"pattern\": \"\\\\w\",\n            \"dateCreated\": \"2018-10-17T06:45:25.000+0000\",\n            \"createdBy\": \"apiUser551\",\n            \"dateLastModified\": \"2018-10-17T06:45:25.000+0000\",\n            \"lastModifiedBy\": \"apiUser551\",\n            \"version\": 0,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4666\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4666?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4666\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        },\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4667\",\n            \"name\": \"DocSingleSelectField50\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": \"fv0\",\n            \"valueType\": \"String\",\n            \"displaySize\": 1,\n            \"displayLines\": 1,\n            \"displayType\": \"DROPDOWN\",\n            \"isRequired\": false,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6913\",\n                        \"value\": \"SSValue1\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 1,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6914\",\n                        \"value\": \"SSValue2\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 2,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6915\",\n                        \"value\": \"SSValue3\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 3,\n                        \"dependentValues\": null\n                    }\n                ],\n                \"paged\": false\n            },\n            \"helpText\": \"I'm a Single Select Field\",\n            \"dateCreated\": \"2018-10-17T06:45:46.000+0000\",\n            \"createdBy\": \"apiUser551\",\n            \"dateLastModified\": \"2018-10-17T06:45:46.000+0000\",\n            \"lastModifiedBy\": \"apiUser551\",\n            \"version\": 0,\n            \"_links\": {\n                \"createChild\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/docf1163/children\",\n                    \"method\": \"POST\"\n                },\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4667\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4667?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4667\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        },\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4668\",\n            \"name\": \"DocSingleSelectField52\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": \"fv1\",\n            \"valueType\": \"String\",\n            \"displaySize\": 1,\n            \"displayLines\": 1,\n            \"displayType\": \"DROPDOWN\",\n            \"isRequired\": false,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6917\",\n                        \"value\": \"SSValue1\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 1,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6918\",\n                        \"value\": \"SSValue2\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 2,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6919\",\n                        \"value\": \"SSValue3\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 3,\n                        \"dependentValues\": null\n                    }\n                ],\n                \"paged\": false\n            },\n            \"helpText\": \"I'm a Single Select Field\",\n            \"dateCreated\": \"2018-10-17T06:45:57.000+0000\",\n            \"createdBy\": \"apiUser551\",\n            \"dateLastModified\": \"2018-10-17T06:45:57.000+0000\",\n            \"lastModifiedBy\": \"apiUser551\",\n            \"version\": 0,\n            \"_links\": {\n                \"createChild\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/docf1163/children\",\n                    \"method\": \"POST\"\n                },\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4668\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4668?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4668\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        },\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4669\",\n            \"name\": \"DocMultiSelectField19\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": \"multiselect\",\n            \"valueType\": \"String\",\n            \"displaySize\": 1,\n            \"displayLines\": 10,\n            \"displayType\": \"MULTISELECT\",\n            \"isRequired\": false,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6921\",\n                        \"value\": \"MSValue1\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 1,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6922\",\n                        \"value\": \"MSValue2\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 2,\n                        \"dependentValues\": null\n                    },\n                    {\n                        \"_type\": \"GetFieldValueEntity\",\n                        \"id\": \"fldv6923\",\n                        \"value\": \"MSValue3\",\n                        \"valueClass\": null,\n                        \"isDefault\": false,\n                        \"displayOrder\": 3,\n                        \"dependentValues\": null\n                    }\n                ],\n                \"paged\": false\n            },\n            \"helpText\": \"I'm a multi select  Field\",\n            \"dateCreated\": \"2018-10-17T06:46:05.000+0000\",\n            \"createdBy\": \"apiUser551\",\n            \"dateLastModified\": \"2018-10-17T06:46:05.000+0000\",\n            \"lastModifiedBy\": \"apiUser551\",\n            \"version\": 0,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4669\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4669?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4669\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        },\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4670\",\n            \"name\": \"DocDateField31\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": \"d0\",\n            \"valueType\": \"Date\",\n            \"displaySize\": 1,\n            \"displayLines\": 1,\n            \"displayType\": \"DATE\",\n            \"isRequired\": false,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [],\n                \"paged\": false\n            },\n            \"helpText\": \"I'm an User Field\",\n            \"dateCreated\": \"2018-10-17T06:46:16.000+0000\",\n            \"createdBy\": \"apiUser551\",\n            \"dateLastModified\": \"2018-10-17T06:46:16.000+0000\",\n            \"lastModifiedBy\": \"apiUser551\",\n            \"version\": 0,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4670\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4670?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4670\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        },\n        {\n            \"_type\": \"GetFieldEntity\",\n            \"id\": \"fild4671\",\n            \"name\": \"DocUserField46\",\n            \"folderId\": \"docf1163\",\n            \"memberName\": \"user\",\n            \"valueType\": \"SfUser\",\n            \"displaySize\": 10,\n            \"displayLines\": 1,\n            \"displayType\": \"USER\",\n            \"isRequired\": false,\n            \"isDisabled\": false,\n            \"isHiddenOnCreate\": false,\n            \"fieldValues\": {\n                \"_type\": \"collection\",\n                \"items\": [],\n                \"paged\": false\n            },\n            \"helpText\": \"I'm an User Field\",\n            \"userFilter\": \"user_proj_member\",\n            \"userKeys\": [\n                \"user1156\"\n            ],\n            \"dateCreated\": \"2018-10-17T06:46:33.000+0000\",\n            \"createdBy\": \"apiUser551\",\n            \"dateLastModified\": \"2018-10-17T06:46:33.000+0000\",\n            \"lastModifiedBy\": \"apiUser551\",\n            \"version\": 0,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4671\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4671?$If-Match=W%2F%220%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/docman/v1/fields/fild4671\",\n                    \"method\": \"DELETE\"\n                }\n            }\n        }\n    ],\n    \"paged\": false\n}"}],"_postman_id":"fa66f28d-01c3-4e3c-a316-d30b0493429e"},{"name":"Get SCM Details","event":[{"listen":"test","script":{"id":"3708b431-8e47-46df-9056-19160697297f","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData=JSON.parse(responseBody);","for (i=0; i<2; i++){","    if(jsonData.items[i].adapterName == \"Subversion\"){","        pm.environment.set(\"SVN_SystemID\", jsonData.items[i].id);","    }","    else if(jsonData.items[i].adapterName == \"Git\"){","         pm.environment.set(\"Git_SystemID\", jsonData.items[i].id);","    }","    else if(jsonData.items[i].name == \"status\"){","         pm.environment.set(\"Status_ID\", jsonData.items[i].id);","    }","    else if(jsonData.items[i].name == \"customer\"){","         pm.environment.set(\"Customer_ID\", jsonData.items[i].id);","    }","}"]}},{"listen":"prerequest","script":{"id":"5b7b3296-b201-4f69-b4c9-f9c3f6f58d68","type":"text/javascript","exec":[""]}}],"id":"a0cd5876-4865-4866-9928-c4f7b38a0238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/scm/v1/servers?includeApiEndpoint=false&excludeFrozen=false","description":"<p>Gets the SCM details</p>\n","urlObject":{"path":["ctfrest","scm","v1","servers"],"host":["{{HostName}}"],"query":[{"key":"includeApiEndpoint","value":"false"},{"key":"excludeFrozen","value":"false"}],"variable":[]}},"response":[],"_postman_id":"a0cd5876-4865-4866-9928-c4f7b38a0238"},{"name":"Create SVN Repository","event":[{"listen":"test","script":{"id":"9d3cc364-1592-42b6-9186-39a725ac33ea","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData=JSON.parse(responseBody);","pm.environment.set(\"SVN_repoID\", jsonData.id);","pm.environment.set(\"svnname\", jsonData.title);",""]}},{"listen":"prerequest","script":{"id":"305c3caf-aeed-4c5f-aa05-0e2c4f3ff4ea","type":"text/javascript","exec":["pm.environment.set(\"svnname\", \"svn\");"]}}],"id":"f6238fb3-bd68-4c36-84b2-58c122ade6cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"repositoryDirectory\": \"{{svnname}}\",\r\n  \"title\": \"{{svnname}}\",\r\n  \"description\": \"Svn repo created via REST API call\",\r\n  \"idRequiredOnCommit\": true,\r\n  \"systemId\": \"{{SVN_SystemID}}\",\r\n  \"searchEnabled\": true,\r\n  \"hideMonitoringDetails\": true,\r\n  \"parameters\": [\r\n    {\r\n      \"key\": \"string\",\r\n      \"value\": \"string\"\r\n    }\r\n  ],\r\n  \"comment\": \"repo creation done\"\r\n}"},"url":"{{HostName}}/ctfrest/scm/v1/projects/{{projectId}}/repositories","description":"<p>Creates a SVN Repository</p>\n","urlObject":{"path":["ctfrest","scm","v1","projects","{{projectId}}","repositories"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"66aeb425-0490-4844-97ef-8c97e8468bab","name":"Create SVN Repository","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"repositoryDirectory\": \"{{svnname}}\",\r\n  \"title\": \"{{svnname}}\",\r\n  \"description\": \"Svn repo created via REST API call\",\r\n  \"idRequiredOnCommit\": true,\r\n  \"systemId\": \"{{SVN_SystemID}}\",\r\n  \"searchEnabled\": true,\r\n  \"hideMonitoringDetails\": true,\r\n  \"parameters\": [\r\n    {\r\n      \"key\": \"string\",\r\n      \"value\": \"string\"\r\n    }\r\n  ],\r\n  \"comment\": \"repo creation done\"\r\n}"},"url":"{{HostName}}/ctfrest/scm/v1/projects/{{projectId}}/repositories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:51:29 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1124"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"2004"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=9998"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"repository\",\n    \"id\": \"reps1124\",\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T10:51:27.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:51:27.000+0000\",\n    \"version\": 100,\n    \"path\": \"projects.baselineapiprojectwithdataset677/scm.svn403\",\n    \"title\": \"svn403\",\n    \"description\": \"Svn repo created via REST API call\",\n    \"projectId\": \"proj1088\",\n    \"idRequiredOnCommit\": true,\n    \"isOnManagedScmServer\": true,\n    \"searchEnabled\": true,\n    \"repositoryDirectory\": \"/opt/collabnet/teamforge/var/scm/svnroot/svn511\",\n    \"scmAdapterName\": \"Subversion\",\n    \"scmViewerUrl\": \"/ctf/code/projects.baselineapiprojectwithdataset677/svn/scm.svn403/tree/head\",\n    \"systemId\": \"exsy1003\",\n    \"systemTitle\": \"SVN (teamforge.collab.net)\",\n    \"hideMonitoringDetails\": true,\n    \"canEditRepository\": true,\n    \"parameters\": [\n        {\n            \"key\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"checkoutCommands\": {\n        \"_type\": \"checkoutCommands\",\n        \"defaultProtocol\": \"HTTP\",\n        \"urls\": {\n            \"HTTP\": \"https://teamforge.collab.net/svn/repos/svn511\"\n        },\n        \"commands\": {\n            \"HTTP\": \"svn checkout --username apiUser342 https://teamforge.collab.net/svn/repos/svn511\"\n        },\n        \"_links\": {\n            \"self\": {\n                \"href\": \"~/repositories/reps1124/checkout-commands\"\n            }\n        }\n    },\n    \"apiEndpoint\": \"https://teamforge.collab.net/svn-rest/\",\n    \"_links\": {\n        \"search\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/codesearch/v1/search/reps1124\",\n            \"method\": \"POST\"\n        },\n        \"latestIndex\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/codesearch/v1/latestindex/reps1124\",\n            \"method\": \"GET\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1124\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1124\",\n            \"method\": \"PATCH\"\n        },\n        \"highlightSearchResult\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/codesearch/v1/highlight/reps1124\",\n            \"method\": \"POST\"\n        },\n        \"checkoutCommands\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1124/checkout-commands\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1124\",\n            \"method\": \"DELETE\"\n        }\n    },\n    \"repositoryName\": \"svn511\"\n}"}],"_postman_id":"f6238fb3-bd68-4c36-84b2-58c122ade6cb"},{"name":"Create Git Repository","event":[{"listen":"test","script":{"id":"2accc425-dc95-4c1a-a3d9-9a059add701d","type":"text/javascript","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData=JSON.parse(responseBody);","pm.environment.set(\"Git_repoID\", jsonData.id);","","pm.environment.set(\"gitname\", jsonData.title);"]}},{"listen":"prerequest","script":{"id":"534ea6bf-189c-49f0-bbe3-b982d6ea23a6","type":"text/javascript","exec":["pm.environment.set(\"gitname\", \"git\");"]}}],"id":"8bb9e7e6-4247-4133-98ac-93bface39515","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"repositoryDirectory\": \"{{gitname}}\",\r\n  \"title\": \"{{gitname}}\",\r\n  \"description\": \"Git repo created via REST API call\",\r\n  \"idRequiredOnCommit\": true,\r\n  \"systemId\": \"{{Git_SystemID}}\",\r\n  \"searchEnabled\": true,\r\n  \"hideMonitoringDetails\": true,\r\n  \"parameters\": [\r\n    {\r\n      \"key\": \"string\",\r\n      \"value\": \"string\"\r\n    }\r\n  ],\r\n  \"comment\": \"repo creation done\"\r\n}"},"url":"{{HostName}}/ctfrest/scm/v1/projects/{{projectId}}/repositories","description":"<p>Creates a Git Repository</p>\n","urlObject":{"path":["ctfrest","scm","v1","projects","{{projectId}}","repositories"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"8d767473-43c6-4693-b6c9-1cb184b46ff4","name":"Create Git Repository","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"repositoryDirectory\": \"{{gitname}}\",\r\n  \"title\": \"{{gitname}}\",\r\n  \"description\": \"Git repo created via REST API call\",\r\n  \"idRequiredOnCommit\": true,\r\n  \"systemId\": \"{{Git_SystemID}}\",\r\n  \"searchEnabled\": true,\r\n  \"hideMonitoringDetails\": true,\r\n  \"parameters\": [\r\n    {\r\n      \"key\": \"string\",\r\n      \"value\": \"string\"\r\n    }\r\n  ],\r\n  \"comment\": \"repo creation done\"\r\n}"},"url":"{{HostName}}/ctfrest/scm/v1/projects/{{projectId}}/repositories"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:51:59 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1125"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"3154"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"repository\",\n    \"id\": \"reps1125\",\n    \"createdBy\": \"apiUser342\",\n    \"createdDate\": \"2018-10-21T10:51:59.000+0000\",\n    \"lastModifiedBy\": \"apiUser342\",\n    \"lastModifiedDate\": \"2018-10-21T10:51:59.000+0000\",\n    \"version\": 100,\n    \"path\": \"projects.baselineapiprojectwithdataset677/scm.git880\",\n    \"title\": \"git880\",\n    \"description\": \"Git repo created via REST API call\",\n    \"projectId\": \"proj1088\",\n    \"idRequiredOnCommit\": true,\n    \"isOnManagedScmServer\": true,\n    \"searchEnabled\": true,\n    \"repositoryDirectory\": \"/opt/collabnet/teamforge/var/scm/gerrit/gitroot/git832\",\n    \"scmAdapterName\": \"Git\",\n    \"scmViewerUrl\": \"/ctf/code/projects.baselineapiprojectwithdataset677/git/scm.git880/tree\",\n    \"systemId\": \"exsy1002\",\n    \"systemTitle\": \"Git teamforge.collab.net\",\n    \"hideMonitoringDetails\": true,\n    \"canEditRepository\": true,\n    \"parameters\": [\n        {\n            \"key\": \"string\",\n            \"value\": \"string\"\n        }\n    ],\n    \"checkoutCommands\": {\n        \"_type\": \"checkoutCommands\",\n        \"defaultProtocol\": \"SSH_ADVANCED\",\n        \"urls\": {\n            \"ANONYMOUS\": \"https://teamforge.collab.net/gerrit/git832\",\n            \"SSH_ADVANCED\": \"ssh://apiUser342@teamforge.collab.net:29418/git832\",\n            \"SSH\": \"ssh://apiUser342@teamforge.collab.net:29418/git832\",\n            \"HTTP\": \"https://apiUser342@teamforge.collab.net/gerrit/git832\",\n            \"HTTP_ADVANCED\": \"https://apiUser342@teamforge.collab.net/gerrit/git832\"\n        },\n        \"commands\": {\n            \"ANONYMOUS\": \"git clone --recurse-submodules https://teamforge.collab.net/gerrit/git832\",\n            \"SSH_ADVANCED\": \"git clone --recurse-submodules ssh://apiUser342@teamforge.collab.net:29418/git832 && cd \\\"git832\\\" && git config user.name \\\"apiUser997\\\" && git config user.email \\\"yoga@mail-qa1.maa.collab.net\\\" && scp -P 29418 apiUser342@teamforge.collab.net:hooks/commit-msg .git/hooks/\",\n            \"SSH\": \"git clone --recurse-submodules ssh://apiUser342@teamforge.collab.net:29418/git832\",\n            \"HTTP\": \"git clone --recurse-submodules https://apiUser342@teamforge.collab.net/gerrit/git832\",\n            \"HTTP_ADVANCED\": \"git clone --recurse-submodules https://apiUser342@teamforge.collab.net/gerrit/git832 && cd \\\"git832\\\" && git config user.name \\\"apiUser997\\\" && git config user.email \\\"yoga@mail-qa1.maa.collab.net\\\" && curl -o .git/hooks/commit-msg https://apiUser342@teamforge.collab.net/gerrit/tools/hooks/commit-msg && chmod +x .git/hooks/commit-msg\"\n        },\n        \"_links\": {\n            \"self\": {\n                \"href\": \"~/repositories/reps1125/checkout-commands\"\n            }\n        }\n    },\n    \"apiEndpoint\": \"https://teamforge.collab.net/git/api/\",\n    \"_links\": {\n        \"search\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/codesearch/v1/search/reps1125\",\n            \"method\": \"POST\"\n        },\n        \"latestIndex\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/codesearch/v1/latestindex/reps1125\",\n            \"method\": \"GET\"\n        },\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1125\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1125\",\n            \"method\": \"PATCH\"\n        },\n        \"highlightSearchResult\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/codesearch/v1/highlight/reps1125\",\n            \"method\": \"POST\"\n        },\n        \"checkoutCommands\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1125/checkout-commands\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/scm/v1/repositories/reps1125\",\n            \"method\": \"DELETE\"\n        }\n    },\n    \"repositoryName\": \"git832\"\n}"}],"_postman_id":"8bb9e7e6-4247-4133-98ac-93bface39515"}],"id":"ef4fc482-f5a4-4705-a1f9-3db1c84951c9","description":"<p>All the APIs required before performing baseline activities in TeamForge are included in this section.</p>\n","event":[{"listen":"prerequest","script":{"id":"9bb133f8-3c7e-4a55-988d-70e23151ac14","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"851dcdd7-73fe-4bd7-a685-9a4669f0210b","type":"text/javascript","exec":[""]}}],"_postman_id":"ef4fc482-f5a4-4705-a1f9-3db1c84951c9"},{"name":"Create/Delete Baseline","item":[{"name":"Get Seed Data For Project","event":[{"listen":"test","script":{"id":"639f4b59-238e-453e-a3ff-315a7cf9f8b8","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}}],"id":"5136c94c-1514-4b15-be93-4063969da895","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/configure/seeddata","description":"<p>Gets the seed data for a project</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","configure","seeddata"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"4a4fe595-d81d-47c1-aec2-64c9a22d937b","name":"Get Seed Data For Project","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/configure/seeddata"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 10:53:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"true"}],"_postman_id":"5136c94c-1514-4b15-be93-4063969da895"},{"name":"Get Baseline Field By Project ID","event":[{"listen":"test","script":{"id":"5d776db2-7146-44ba-9636-e145ffdb5894","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var jsonData = JSON.parse(responseBody);","var i , j, k;"," for (i=0; i<2; i++){","     if(jsonData[i].Name == \"status\"){","         pm.environment.set(\"status_field_Id\", jsonData[i].Id);  ","         pm.environment.set(\"status_field_version\", jsonData[i].Version);","     }","    else if(jsonData[i].Name == \"category\"){","        pm.environment.set(\"category_field_Id\", jsonData[i].Id);","        pm.environment.set(\"category_field_version\", jsonData[i].Version);","     } "," }"],"type":"text/javascript"}}],"id":"4d046ef1-f5a1-46ff-b070-9e33c5a71076","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Gets the baseline fields using project id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4d046ef1-f5a1-46ff-b070-9e33c5a71076"},{"name":"Get Baseline Field Value By ProjectID","event":[{"listen":"test","script":{"id":"0cfcb67e-00ff-4120-acf9-e16499522578","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var jsonData = JSON.parse(responseBody);","var i , j, k;"," for (i=0; i<2; i++){","     if(jsonData[i].Name == \"status\"){","         for (j=0; j<6; j++){","             if(jsonData[i].FieldValues[j].Value == \"Submitted\"){","                 pm.environment.set(\"status_submitted_Id\", jsonData[i].FieldValues[j].Id);  ","             }else if(jsonData[i].FieldValues[j].Value == \"Acknowledge\"){","                 pm.environment.set(\"status_acknowledge_Id\", jsonData[i].FieldValues[j].Id); ","             }else if(jsonData[i].FieldValues[j].Value == \"Accept\"){","                 pm.environment.set(\"status_accept_Id\", jsonData[i].FieldValues[j].Id);  ","             }else if(jsonData[i].FieldValues[j].Value == \"Approve\"){","                 pm.environment.set(\"status_approve_Id\", jsonData[i].FieldValues[j].Id);  ","             }else if(jsonData[i].FieldValues[j].Value == \"Duplicate\"){","                 pm.environment.set(\"status_duplicate_Id\", jsonData[i].FieldValues[j].Id);  ","             }else if(jsonData[i].FieldValues[j].Value == \"Reject\"){","                pm.environment.set(\"status_reject_Id\", jsonData[i].FieldValues[j].Id);  ","            }","        }","    }","    if(jsonData[i].Name == \"category\"){","         for (j=0; j<2; j++){","            if(jsonData[i].FieldValues[j].Value == \"Delivery Baseline\"){","                 pm.environment.set(\"category_delivery_Id\", jsonData[i].FieldValues[j].Id);  ","             }else if(jsonData[i].FieldValues[j].Value == \"Deployment Baseline\"){","                 pm.environment.set(\"category_deployment_Id\", jsonData[i].FieldValues[j].Id);  ","             }else if(jsonData[i].FieldValues[j].Value == \"Release Baseline\"){","                 pm.environment.set(\"category_release_Id\", jsonData[i].FieldValues[j].Id);  ","            }else if(jsonData[i].FieldValues[j].Value == \"Integration Baseline\"){","                 pm.environment.set(\"category_integration_Id\", jsonData[i].FieldValues[j].Id);  ","            }","        }","    }"," }"]}}],"id":"886fd45a-81fc-4039-b04e-db0972a7aa26","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}?expand=true","description":"<p>Gets the values for the baseline fields using project id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[{"key":"expand","value":"true"}],"variable":[]}},"response":[],"_postman_id":"886fd45a-81fc-4039-b04e-db0972a7aa26"},{"name":"Get Tracker Field Data by Name - Status","event":[{"listen":"test","script":{"id":"ed991400-155e-41ba-aa81-0e6027111bb8","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var stat = pm.environment.get(\"status_val\");","","if(jsonData.name == \"status\"){","    pm.environment.set(\"status_fildID\", jsonData.id);","}","","if(jsonData.fieldValues.items[0].value == stat){","    pm.environment.set(\"status_Inprogress\", jsonData.fieldValues.items[0].id);","}","","",""]}}],"id":"3ae2a514-fa37-4576-b597-6cfab8cc1a1e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields/by-name/status","description":"<p>Gets the Tracker field data using the field name \"Status\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields","by-name","status"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3ae2a514-fa37-4576-b597-6cfab8cc1a1e"},{"name":"Get Tracker Field Data By Name - Priority","event":[{"listen":"test","script":{"id":"fc60b7bc-c797-44a7-b13f-234855ec8e71","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","if(jsonData.name == \"priority\"){","    pm.environment.set(\"priority_fildID\", jsonData.id);","}"]}}],"id":"5106d9a2-13f8-4341-9778-573d419af2d9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields/by-name/priority","description":"<p>Gets the Tracker field data using the field name \"Priority\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields","by-name","priority"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5106d9a2-13f8-4341-9778-573d419af2d9"},{"name":"Get Tracker Field Data By Name - Planning Folder","event":[{"listen":"test","script":{"id":"5858e656-ab14-4dee-80aa-262cdab462ee","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","if(jsonData.name == \"planningFolder\"){","    pm.environment.set(\"PF_fildID\", jsonData.id);","}"]}}],"id":"c4836d66-cfd9-45d7-9e0d-6a6f32cf5412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields/by-name/planningFolder","description":"<p>Gets the Tracker field data using the field name \"Planning Folder\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields","by-name","planningFolder"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c4836d66-cfd9-45d7-9e0d-6a6f32cf5412"},{"name":"Get Tracker Field Data By Name - Team","event":[{"listen":"test","script":{"id":"f096eb11-db67-4242-954d-f439f4dee3ff","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","if(jsonData.name == \"team\"){","    pm.environment.set(\"team_fildID\", jsonData.id);","}"]}}],"id":"70cec0b9-2e63-4d5b-82e9-72c829eba06f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields/by-name/team","description":"<p>Gets the Tracker field data using the field name \"Team\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields","by-name","team"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"70cec0b9-2e63-4d5b-82e9-72c829eba06f"},{"name":"Get Tracker Field Data By Name - Reported in Release","event":[{"listen":"test","script":{"id":"35bb26ac-6039-4aba-a9fb-52e62a71b45c","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","if(jsonData.name == \"reportedInRelease\"){","    pm.environment.set(\"reportedInRel_fildID\", jsonData.id);","}"]}}],"id":"052ccd1c-fa3d-43c3-a05d-15f5fdb74478","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/trackers/{{TrackerID}}/fields/by-name/reportedInRelease","description":"<p>Gets the Tracker field data using the field name \"Reported in Release\"</p>\n","urlObject":{"path":["ctfrest","tracker","v1","trackers","{{TrackerID}}","fields","by-name","reportedInRelease"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"052ccd1c-fa3d-43c3-a05d-15f5fdb74478"},{"name":"Get Document Fields By Project ID","event":[{"listen":"test","script":{"id":"119a73be-598f-4695-a522-e2c1f6c2c5a9","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);"," if(jsonData.items[0].name == \"status\"){","     pm.environment.set(\"status_fildID_Doc\", jsonData.items[0].id);","     pm.environment.set(\"status_Draft_Doc\", jsonData.items[0].fieldValues.items[0].id);","     pm.environment.set(\"status_Final_Doc\", jsonData.items[0].fieldValues.items[1].id);","     "," }"]}}],"id":"e7a6e690-fc13-40a7-833d-c65e22da8175","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/docman/v1/projects/{{projectId}}/fields","description":"<p>Get the document fields using project id</p>\n","urlObject":{"path":["ctfrest","docman","v1","projects","{{projectId}}","fields"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e7a6e690-fc13-40a7-833d-c65e22da8175"},{"name":"Get the List of Artifacts by Filter Criteria","event":[{"listen":"test","script":{"id":"82df335e-4d7b-4035-a63a-da5f39c58f31","type":"text/javascript","exec":["pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"artf\");","});","","console.log(\"group Id\", pm.environment.get(\"Group_ID\"));","console.log(\"group value\", pm.environment.get(\"Group_val1_Id\"));","console.log(\"customer value\", pm.environment.get(\"customer_val1_Id\"));","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"]}}],"id":"a06a96f2-a51f-46e9-ac9b-f65207a2e734","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n      \"trackers\": [\n       {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n         {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        }\n      },\n      \"planningFolders\": [\n        \"{{PF_Id}}\"\n      ],\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/tracker/ids","description":"<p>With this API, you can: </p>\n<p><strong>Get the number of artifacts (count) that match your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/tracker/count</code></li>\n<li>URL Parameters: <code>Project Id/Path</code> (Required)</li>\n</ul>\n<p><strong>Get the list of IDs for artifacts that match your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/tracker/ids</code></li>\n<li>URL Parameters: <code>Project Id/Path</code> (Required)</li>\n</ul>\n<p><strong>Get the list of artifacts for preview (only manifest fields) based on your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/tracker/preview?sortBy?{{fieldId}}&amp;sortOrder?{{asc|desc}}&amp;limit?{{limit}}&amp;search?{{string}}</code></li>\n<li>URL Parameters:<ul>\n<li>Project Id/Path(Required)</li>\n<li>SortBy (Optional)- sorts the list based on columnName(fieldId)</li>\n<li>SortOrder (Optional)- ascending/descending</li>\n<li>Search (Optional) - seacrh string</li>\n<li>limit (Optional) - no of rows to be returned</li>\n</ul>\n</li>\n</ul>\n<p><strong>Payload</strong> (same for all the above three request URLs)</p>\n<ul>\n<li><p>An array of </p>\n<ol>\n<li>Tracker Id (Required)</li>\n<li>Filter Criteria (Required) - \n a.Attribute - Field Id of a tracker Attribute \n b.Condition - Integer value of AND/OR   AND - 2, OR -3\n c.Values - array of field values ids</li>\n</ol>\n</li>\n<li><p>Planning Folder Ids (optional) - list of planning folder Ids</p>\n</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{projectId}}","filter","tracker","ids"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6fd36212-d6d2-457f-9cd7-9cb1b46bab3f","name":"Artifact List Preview","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"trackers\": [\n        {\n            \"id\": \"tracker1001\",\n            \"filters\": {\n                \"attribute\": \"fild1014\",\n                \"condition\": \"13\",\n                \"values\": [\n                    \"fldv1096\"\n                ]\n            }\n        }\n    ],\n    \"planningFolders\": [\n        \"plan1006\"\n    ]\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/tracker/preview?limit=10&sortBy=artifactId&sortOrder=asc&trackerId=tracker1001","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","definitions","projects.collabnet_agile_baseline_20","filter","tracker","preview"],"query":[{"key":"limit","value":"10"},{"key":"sortBy","value":"artifactId"},{"key":"sortOrder","value":"asc"},{"key":"trackerId","value":"tracker1001"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"totalResultsCount\": \"5\",\n        \"itemList\": [\n            {\n                \"artifactId\": \"artf1001\",\n                \"assignedTo\": {\n                    \"full_name\": \"No user\",\n                    \"username\": \"nobody\"\n                },\n                \"category\": \"none\",\n                \"planningFolder\": {\n                    \"id\": \"plan1001\",\n                    \"title\": \"Product 1\"\n                },\n                \"priority\": \"4\",\n                \"status\": \"Under Consideration\",\n                \"team\": \"\",\n                \"title\": \"[sample] Epic Four\"\n            },\n            {\n                \"artifactId\": \"artf1002\",\n                \"assignedTo\": {\n                    \"full_name\": \"No user\",\n                    \"username\": \"nobody\"\n                },\n                \"category\": \"none\",\n                \"planningFolder\": {\n                    \"id\": \"plan1001\",\n                    \"title\": \"Product 1\"\n                },\n                \"priority\": \"5\",\n                \"status\": \"Under Consideration\",\n                \"team\": \"\",\n                \"title\": \"[sample] Epic Five\"\n            },\n            {\n                \"artifactId\": \"artf1003\",\n                \"assignedTo\": {\n                    \"full_name\": \"No user\",\n                    \"username\": \"nobody\"\n                },\n                \"category\": \"none\",\n                \"planningFolder\": {\n                    \"id\": \"plan1001\",\n                    \"title\": \"Product 1\"\n                },\n                \"priority\": \"3\",\n                \"status\": \"Under Consideration\",\n                \"team\": \"\",\n                \"title\": \"[sample] Epic Three\"\n            },\n            {\n                \"artifactId\": \"artf1004\",\n                \"assignedTo\": {\n                    \"full_name\": \"No user\",\n                    \"username\": \"nobody\"\n                },\n                \"category\": \"none\",\n                \"planningFolder\": {\n                    \"id\": \"plan1001\",\n                    \"title\": \"Product 1\"\n                },\n                \"priority\": \"2\",\n                \"status\": \"Under Consideration\",\n                \"team\": \"\",\n                \"title\": \"[sample] Epic Two\"\n            },\n            {\n                \"artifactId\": \"artf1005\",\n                \"assignedTo\": {\n                    \"full_name\": \"No user\",\n                    \"username\": \"nobody\"\n                },\n                \"category\": \"none\",\n                \"planningFolder\": {\n                    \"id\": \"plan1001\",\n                    \"title\": \"Product 1\"\n                },\n                \"priority\": \"1\",\n                \"status\": \"Under Consideration\",\n                \"team\": \"\",\n                \"title\": \"[sample] Epic One\"\n            }\n        ]\n    }\n]"},{"id":"720231dd-ad27-4ad3-b6a1-f158b4728cee","name":"Artifact Ids","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"trackers\": [\n        {\n            \"id\": \"tracker1001\",\n            \"filters\": {\n                \"attribute\": \"fild1014\",\n                \"condition\": \"13\",\n                \"values\": [\n                    \"fldv1096\"\n                ]\n            }\n        }\n    ],\n    \"planningFolders\": [\n        \"plan1006\"\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/tracker/ids"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n    \"artf1001\",\n    \"artf1002\",\n    \"artf1003\",\n    \"artf1004\",\n    \"artf1005\"\n]"},{"id":"9ccf11d1-c222-4e2f-8c6c-a70f2ba8af2a","name":"Artifact Count","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"trackers\": [\n        {\n            \"id\": \"tracker1001\",\n            \"filters\": {\n                \"attribute\": \"fild1014\",\n                \"condition\": \"13\",\n                \"values\": [\n                    \"fldv1096\"\n                ]\n            }\n        }\n    ],\n    \"planningFolders\": [\n        \"plan1006\"\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/tracker/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:01:30 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"79"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"5"}],"_postman_id":"a06a96f2-a51f-46e9-ac9b-f65207a2e734"},{"name":"Get the List of Documents by Filter Criteria","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"id":"2e2da923-35d1-4647-9edd-9d24042bf6c5"}}],"id":"02bf8c66-bba3-4e5e-8ddf-7a735c1de5d8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n      \"trackers\": [\n       {\n          \"id\": \"{{TrackerID_1}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n         {\n          \"id\": \"{{TrackerID_2}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        }\n      },\n      \"planningFolders\": [\n        \"{{PF_Id}}\"\n      ],\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/document/ids","description":"<p>With this API, you can: </p>\n<p><strong>Get the number of documents (count) that match your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/document/count</code></li>\n<li>URL Parameters: <code>Project Id/Path</code> (Required)</li>\n</ul>\n<p><strong>Get the list of IDs for documents that match your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/document/ids</code></li>\n<li>URL Parameters: <code>Project Id/Path</code> (Required)</li>\n</ul>\n<p><strong>Get the list of artifacts for preview (only manifest fields) based on your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/document/preview?sortBy?{{fieldId}}&amp;sortOrder?{{asc|desc}}&amp;limit?{{limit}}&amp;search?{{string}}</code></li>\n<li>URL Parameters:<ul>\n<li>Project Id/Path(Required)</li>\n<li>SortBy (Optional)- sorts the list based on columnName(fieldId)</li>\n<li>SortOrder (Optional)- ascending/descending</li>\n<li>Search (Optional) - seacrh string</li>\n<li>limit (Optional) - no of rows to be returned</li>\n</ul>\n</li>\n</ul>\n<p><strong>Payload</strong> (same for all the above three request URLs)</p>\n<ul>\n<li><p>An array of </p>\n<ol>\n<li>Tracker Id (Required)</li>\n<li>Filter Criteria (Required) - \n a.Attribute - Field Id of a document Attribute \n b.Condition - Integer value of AND/OR   AND - 2, OR -3\n c.Values - array of field values ids</li>\n</ol>\n</li>\n<li><p>Document Folder Ids (optional)—List of document folder Ids</p>\n</li>\n<li><p>Version—Active/Latest</p>\n</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{projectId}}","filter","document","ids"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"4f04d8b6-43bb-4386-b130-1dc203e2056e","name":"Document List Preview","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"documentFolders\": {\n        \"folderIds\": [\n            \"docf1005\",\n            \"docf1008\",\n            \"docf1019\",\n            \"docf1020\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n            \"attribute\": \"fild1012\",\n            \"condition\": \"13\",\n            \"values\": [\n                \"fldv1074\"\n            ],\n            \"isInvalid\": false\n        }\n    }\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/document/preview?limit=10&sortBy=documentId&sortOrder=asc","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","definitions","projects.collabnet_agile_baseline_20","filter","document","preview"],"query":[{"key":"limit","value":"10"},{"key":"sortBy","value":"documentId"},{"key":"sortOrder","value":"asc"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"totalResultsCount\": \"8\",\n        \"itemList\": [\n            {\n                \"documentId\": \"doc1001\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root/doc1001/1\",\n                \"status\": \"Draft\",\n                \"title\": \"Doc1\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1004\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root.product_1.release_2/doc1004/1\",\n                \"status\": \"Draft\",\n                \"title\": \"Copy of Doc1\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1007\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root.product_1.release_2.20_1/doc1007/1\",\n                \"status\": \"Draft\",\n                \"title\": \"Copy of Doc1\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1008\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root.product_1.release_2.20_2/doc1008/1\",\n                \"status\": \"Draft\",\n                \"title\": \"Copy of Doc1\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1017\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root/doc1017/1\",\n                \"status\": \"Draft\",\n                \"title\": \"doc1\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1026\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root/doc1026/1\",\n                \"status\": \"Draft\",\n                \"title\": \"doc kkk\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1027\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root/doc1027/1\",\n                \"status\": \"Draft\",\n                \"title\": \"ghghghg\",\n                \"version\": \"Version 1\"\n            },\n            {\n                \"documentId\": \"doc1028\",\n                \"documentVersionStoredUrl\": \"/sf/docman/do/downloadDocument/projects.collabnet_agile_baseline_20/docman.root/doc1028/1\",\n                \"status\": \"Draft\",\n                \"title\": \"hhhhh\",\n                \"version\": \"Version 1\"\n            }\n        ]\n    }\n]"},{"id":"58099a82-3aeb-4d81-b638-7533fcc5b436","name":"Document Count","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"documentFolders\": {\n        \"folderIds\": [\n            \"docf1005\",\n            \"docf1008\",\n            \"docf1019\",\n            \"docf1020\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n            \"attribute\": \"fild1012\",\n            \"condition\": \"13\",\n            \"values\": [\n                \"fldv1074\"\n            ],\n            \"isInvalid\": false\n        }\n    }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/document/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:02:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"62"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"8"},{"id":"a2d326bf-7a7c-4b98-914e-6f835454b6f2","name":"Document Ids","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"documentFolders\": {\n        \"folderIds\": [\n            \"docf1005\",\n            \"docf1008\",\n            \"docf1019\",\n            \"docf1020\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n            \"attribute\": \"fild1012\",\n            \"condition\": \"13\",\n            \"values\": [\n                \"fldv1074\"\n            ],\n            \"isInvalid\": false\n        }\n    }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/document/ids"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n    \"doc1001\",\n    \"doc1004\",\n    \"doc1007\",\n    \"doc1008\",\n    \"doc1017\",\n    \"doc1026\",\n    \"doc1027\",\n    \"doc1028\"\n]"}],"_postman_id":"02bf8c66-bba3-4e5e-8ddf-7a735c1de5d8"},{"name":"Get the List of File Release Packages by Filter Criteria","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"id":"9afb8dbd-f5d8-4a14-ab55-17aeef1e72e3"}}],"id":"a2999bc4-07bc-45e6-9e8c-5976593826b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n      \"trackers\": [\n       {\n          \"id\": \"{{TrackerID_1}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n         {\n          \"id\": \"{{TrackerID_2}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        }\n      },\n      \"planningFolders\": [\n        \"{{PF_Id}}\"\n      ],\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/frs/preview","description":"<p>With this API, you can: </p>\n<p><strong>Get the number (count) of File Releases (FRS) that match your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/frs/count</code></li>\n<li>URL Parameters: <code>Project Id/Path</code> (Required)</li>\n</ul>\n<p><strong>Get the list of IDs for FRS that match your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/frs/ids</code></li>\n<li>URL Parameters: <code>Project Id/Path</code> (Required)</li>\n</ul>\n<p><strong>Get the list of FRS for preview based on your filter criteria</strong></p>\n<ul>\n<li>URL: <code>{{HostName}}/ctfrest/baseline/v1/router/definitions/{{projectId}}/filter/frs/preview?sortBy?{{fieldId}}&amp;sortOrder?{{asc|desc}}&amp;limit?{{limit}}&amp;search?{{string}}</code></li>\n<li>URL Parameters:<ul>\n<li>Project Id/Path(Required)</li>\n<li>SortBy (Optional)- sorts the list based on columnName(fieldId)</li>\n<li>SortOrder (Optional)- ascending/descending</li>\n<li>Search (Optional) - seacrh string</li>\n<li>limit (Optional) - no of rows to be returned</li>\n</ul>\n</li>\n</ul>\n<p><strong>Payload</strong> (same for all the above three request URLs)</p>\n<p>File Release Ids—List of file release Ids.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{projectId}}","filter","frs","preview"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"194f454c-26bf-48e5-acf6-b161bfee2d62","name":"FRS Count","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"frs\": {\n        \"releaseIds\": [\n            \"rel1002\",\n            \"rel1005\"\n        ]\n    }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/frs/count"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:02:42 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"205"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"5"},{"id":"9d2ad5f9-67b8-4075-a78d-0efcb997712f","name":"FRS Ids","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"frs\": {\n        \"releaseIds\": [\n            \"rel1002\",\n            \"rel1005\"\n        ]\n    }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/frs/ids"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\"frs1001\"]"},{"id":"e5fb7ad8-7f9e-4375-ac34-a88fae87e464","name":"FRS List Preview","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"frs\": {\n        \"releaseIds\": [\n            \"rel1002\",\n            \"rel1005\"\n        ]\n    }\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/definitions/projects.collabnet_agile_baseline_20/filter/frs/preview?limit=10&sortBy=packageName&sortOrder=asc","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","definitions","projects.collabnet_agile_baseline_20","filter","frs","preview"],"query":[{"key":"limit","value":"10"},{"key":"sortBy","value":"packageName"},{"key":"sortOrder","value":"asc"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"totalResultsCount\": 2,\n    \"frsFiles\": [\n        {\n            \"frsId\": \"\",\n            \"frsFileName\": \"Response Codes.txt\",\n            \"fileSize\": \"1.06 KB\",\n            \"fileCreatedDate\": \"2020-05-15 00:12:44 +0530 IST\",\n            \"fileLastModifiedDate\": \"2020-05-15 00:12:44 +0530 IST\",\n            \"release\": {\n                \"title\": \"Release 1\",\n                \"packageName\": \"Product 1\"\n            }\n        },\n        {\n            \"frsId\": \"\",\n            \"frsFileName\": \"Release Console Deprecation Qualification.txt\",\n            \"fileSize\": \"1.55 KB\",\n            \"fileCreatedDate\": \"2020-05-15 00:13:33 +0530 IST\",\n            \"fileLastModifiedDate\": \"2020-05-15 00:13:33 +0530 IST\",\n            \"release\": {\n                \"title\": \"Release 3\",\n                \"packageName\": \"Product 2\"\n            }\n        }\n    ]\n}"}],"_postman_id":"a2999bc4-07bc-45e6-9e8c-5976593826b0"},{"name":"Create Baseline","event":[{"listen":"test","script":{"id":"ce0d1074-5a7a-4bf5-bdb7-72e6b5a97d63","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","console.log(\"customer value\", pm.environment.get(\"customer_val1_Id\"));","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"baseId1\", jsonData.id);","","var schema = {","    \"Id\"  : \"string\",","    \"Title\" : \"string\",","    \"Description\" : \"string\",","    \"Status\" : \"string\",","    \"MetastatusValue\" : \"string\",","    \"Type\" : \"int\",","    \"ProjectId\" :  \"string\",","    \"Category\" : \"string\",","    \"Version\" : \"int\",","    \"CreatedBy\" :   \"string\",","    \"ModifiedBy\" : \"string\",","    \"ApprovedBy\" : \"string\",","    \"DateCreated\" : \"string\",","    \"DateModified\": \"string\",","    \"DateApproved\" : \"string\",","    \"BaselineDefinition\" : \"BaselineDefinitionResponse\",","    \"BDefReferenceId\" :  \"int\",","    \"FlexFields\" : [","        \"string\"","    ]","};","    ","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"9d1bc76b-fdb0-411c-a993-a0eb14ee47e2","exec":[""],"type":"text/javascript"}}],"id":"9a2122e6-95a1-438f-8964-cfd4ea4bde93","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline1\",\n  \"description\": \"testing with baseline compare feature\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_delivery_Id}}\",\n  \"flexFields\": [],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n       {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n         {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        }\n      },\n\t   \"planningFolders\": {\n    \t \"planningFolderIds\": [\n    \t   \"{{PF_Id}}\"\n    \t],\n    \t \"pfTree\": {}\n\t   },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}","description":"<p>Use this API to create a baseline. </p>\n<p><strong>URL Parameters</strong></p>\n<p><code>ProjectId/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>Title (Required)</li>\n<li>Description (Required)</li>\n<li>Status (Required) - status field value Id</li>\n<li>Category (Required) - category field value Id</li>\n<li>Flex fields (Rquired/Optional)—Set of field Ids and values </li>\n<li>Baseline definition<ul>\n<li>Filter (at leaset one filter is required)—Filter Criteria for Trackers, Documents, FRS, SCM, Binaries.</li>\n<li>External baseline definitions (optional)—Baseline definition Ids that need to be imported into this definition.</li>\n<li>External baselines (optional)—External baselines Ids that need to be imported into this definition.</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"ab996058-b21c-4b32-a6d1-39625520cd21","name":"Create Baseline","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Test1\",\n    \"description\": \"Test Baseline\",\n    \"status\": \"basefldv1003\",\n    \"category\": \"basefldv1006\",\n    \"flexFields\": [],\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": [\n                {\n                    \"id\": \"tracker1001\",\n                    \"filters\": {\n                        \"attribute\": \"fild1014\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                            \"fldv1096\"\n                        ]\n                    }\n                },\n                {\n                    \"id\": \"tracker1002\",\n                    \"filters\": {}\n                }\n            ],\n            \"documentFolders\": {\n                \"folderIds\": [\n                    \"docf1006\",\n                    \"docf1007\",\n                    \"docf1017\",\n                    \"docf1018\",\n                    \"docf1008\",\n                    \"docf1019\",\n                    \"docf1020\"\n                ],\n                \"version\": \"active\",\n                \"filters\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"isInvalid\": false\n                }\n            },\n            \"planningFolders\": {\n                \"planningFolderIds\": [\n                    \"plan1006\"\n                ],\n            },  \n            \"frs\": {\n                \"releaseIds\": [\n                    \"rel1002\",\n                    \"rel1001\"\n                ]\n            },\n            \"scms\": [ \n            \t{\n                \"id\": \"reps1069\",\n                \"repositoryName\": \"gitrepo\",\n                \"tagId\": \"gittag\"\n            },\n            {\n                \"id\": \"reps1068\",\n                \"repositoryName\": \"svnrepo1\",\n                \"tagId\": \"newfol\"\n            }],\n            \"binaries\": []\n        },\n        \"nestedBaselineDefinitions\": [],\n        \"nestedExternalBaselines\": []\n}\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/proj1008"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:03:27 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"901"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1034\",\n    \"title\": \"Test1\",\n    \"description\": \"Test Baseline\",\n    \"status\": \"Creation In Progress\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Implicit\",\n    \"category\": \"Delivery Baseline\",\n    \"projectId\": \"proj1008\",\n    \"createdBy\": \"TeamForge Administrator\",\n    \"modifiedBy\": \"TeamForge Administrator\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"05/20/2020\",\n    \"dateModified\": \"05/20/2020\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        },\n        \"nestedExternalBaselines\": null,\n        \"nestedBaselineDefinitions\": null\n    },\n    \"bDefReferenceId\": 137\n}"}],"_postman_id":"9a2122e6-95a1-438f-8964-cfd4ea4bde93"},{"name":"Create Baseline Definition","event":[{"listen":"test","script":{"id":"57857900-b913-4c3f-a53c-c7b52b329bca","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"baseDefId1\", jsonData.id);","","","var schema = {","    \"Id\"  : \"string\",","    \"Title\" : \"string\",","    \"Description\" : \"string\",","    \"Status\" : \"string\",","    \"MetastatusValue\" : \"string\",","    \"Type\" : \"int\",","    \"ProjectId\" :  \"string\",","    \"Category\" : \"string\",","    \"Version\" : \"int\",","    \"CreatedBy\" :   \"string\",","    \"ModifiedBy\" : \"string\",","    \"ApprovedBy\" : \"string\",","    \"DateCreated\" : \"string\",","    \"DateModified\": \"string\",","    \"DateApproved\" : \"string\",","    \"BaselineDefinition\" : \"BaselineDefinitionResponse\",","    \"BDefReferenceId\" :  \"int\",","    \"FlexFields\" : [","        \"string\"","    ]","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e8f4e641-536a-4778-864f-7001fba9c17b","exec":[""],"type":"text/javascript"}}],"id":"12ca1ba0-50f5-42fd-956f-f221416eca46","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"baselineDef1_1\",\n  \"description\": \"testing with baseline definition compare feature\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_delivery_Id}}\",\n\t\"type\": \"Explicit\",\n\t\"filter\": {\n      \"trackers\": [\n       {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n         {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        }\n      },\n      \"planningFolders\": {\n    \t \"planningFolderIds\": [\n    \t   \"{{PF_Id}}\"\n    \t],\n    \t \"pfTree\": {}\n\t   },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}","description":"<p>Use this API to creates a baseline definition.</p>\n<p><strong>URL Parameters</strong></p>\n<p><code>ProjectId/Path</code> (Required)</p>\n<p><strong>Payload</strong> </p>\n<ul>\n<li>Title (Required) </li>\n<li>Description (Required)</li>\n<li>Filter (at least one filter is required)—Filter criteria for Trackers, Documents, FRS, SCM, Binaries.</li>\n<li>External baseline definitions (Optional)—Baseline definition Ids that need to be imported into this definition.</li>\n<li>External baselines (Optional)—External baselines Ids that need to be imported into this definition.</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"362f0bc4-84fe-4dd1-8087-73e697ab44d4","name":"Create Baseline Definition","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"TestDefinition\",\n    \"description\": \"Test Create Baseline Definition\",\n    \"category\": \"basefldv1007\",\n    \"filter\": {\n        \"trackers\": [\n            {\n                \"id\": \"tracker1001\",\n                \"filters\": {}\n            }\n        ],\n        \"documentFolders\": {\n            \"folderIds\": [\n                \"docf1009\",\n                \"docf1015\",\n                \"docf1021\",\n                \"docf1022\",\n                \"docf1016\",\n                \"docf1023\",\n                \"docf1024\"\n            ],\n            \"version\": \"active\",\n            \"filters\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"isInvalid\": false\n            }\n        },\n        \"planningFolders\": {\n        \"planningFolderIds\": []\n        },\n        \"frs\": {\n            \"releaseIds\": [\n                \"rel1002\",\n                \"rel1001\"\n            ]\n        },\n        \"scms\": [],\n        \"binaries\": []\n    },\n    \"nestedBaselineDefinitions\": [],\n    \"nestedExternalBaselines\": []\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/projects.collabnet_agile_baseline_20"},"status":"Created","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:04:15 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"331"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"bdef1082\",\n    \"title\": \"TestDefinition\",\n    \"description\": \"Test Create Baseline Definition\",\n    \"category\": \"Deployment Baseline\",\n    \"type\": \"Explicit\",\n    \"createdBy\": \"TeamForge Administrator\",\n    \"dateCreated\": \"05/20/2020\",\n    \"modifiedBy\": \"TeamForge Administrator\",\n    \"dateModified\": \"05/20/2020\",\n    \"version\": 100,\n    \"projectId\": \"proj1008\"\n}"}],"_postman_id":"12ca1ba0-50f5-42fd-956f-f221416eca46"},{"name":"Get Baseline By ID","event":[{"listen":"test","script":{"id":"0c2cf812-02d7-4bc8-823f-0d50e1b81500","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","var baseid = pm.environment.get(\"baseId1\");","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(baseid);","});","","","var schema = {","    \"Id\"  : \"string\",","    \"Title\" : \"string\",","    \"Description\" : \"string\",","    \"Status\" : \"string\",","    \"MetastatusValue\" : \"string\",","    \"Type\" : \"int\",","    \"ProjectId\" :  \"string\",","    \"Category\" : \"string\",","    \"Version\" : \"int\",","    \"CreatedBy\" :   \"string\",","    \"ModifiedBy\" : \"string\",","    \"ApprovedBy\" : \"string\",","    \"DateCreated\" : \"string\",","    \"DateModified\": \"string\",","    \"DateApproved\" : \"string\",","    \"BaselineDefinition\" : \"BaselineDefinitionResponse\",","    \"BDefReferenceId\" :  \"int\",","    \"FlexFields\" : [","        \"string\"","    ]","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"3e1660ca-1ab6-4bad-947e-d2536f81bcb5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId1}}","description":"<p>Get a baseline by its ID</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{baseId1}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e1660ca-1ab6-4bad-947e-d2536f81bcb5"},{"name":"Get Tracker Field Value By Field ID","event":[{"listen":"test","script":{"type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"id":"a155e69b-5144-455a-a606-42223d78ce9b"}}],"id":"f9a903ec-6989-45e6-ba1d-8b33dfa7de09","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/{{priority_fildID}}/values","description":"<p>Gets values for Tracker fields using field id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","{{priority_fildID}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f9a903ec-6989-45e6-ba1d-8b33dfa7de09"},{"name":"Get Artifact List","event":[{"listen":"test","script":{"id":"2a6abf47-a5ef-4fb0-a602-f7ba35c14291","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","for(var i=0; i<3; i++){","    postman.setEnvironmentVariable(\"ArtifactID\"+i+\"\", jsonData.items[i].id);","}"],"type":"text/javascript"}}],"id":"c2f8f6b3-14c4-4957-9175-14daf3f94ee2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/tracker/v1/artifacts?containerid={{TrackerID}}&includeIconLinks=false&sortBy=-lastModifiedDate&offset=0&count=-1&fullPageInfo=true","description":"<p>Gets the list of artifacts in a Tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","artifacts"],"host":["{{HostName}}"],"query":[{"key":"containerid","value":"{{TrackerID}}"},{"key":"includeIconLinks","value":"false"},{"key":"sortBy","value":"-lastModifiedDate"},{"key":"offset","value":"0"},{"key":"count","value":"-1"},{"key":"fullPageInfo","value":"true"}],"variable":[]}},"response":[{"id":"025afe78-e570-4941-aaf7-590f79f69cd1","name":"GetArtifactList(Tracker4)","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":{"raw":"{{HostName}}/ctfrest/tracker/v1/artifacts?containerid={{TrackerID}}&includeIconLinks=false&sortBy=-lastModifiedDate&offset=0&count=-1&fullPageInfo=true","host":["{{HostName}}"],"path":["ctfrest","tracker","v1","artifacts"],"query":[{"key":"containerid","value":"{{TrackerID}}"},{"key":"includeIconLinks","value":"false"},{"key":"sortBy","value":"-lastModifiedDate"},{"key":"offset","value":"0"},{"key":"count","value":"-1"},{"key":"fullPageInfo","value":"true"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 11 Oct 2018 06:39:14 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"1054"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"collection\",\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts?containerId=tracker1173&sortBy=-lastModifiedDate&offset=0&count=3\"\n        }\n    },\n    \"items\": [\n        {\n            \"_type\": \"GetSimpleArtifactEntity\",\n            \"id\": \"artf1757\",\n            \"title\": \"SubPF_SubTeam_Artifact674\",\n            \"description\": \"Pf artifact created via REST API\",\n            \"projectId\": \"proj1083\",\n            \"path\": \"projects.baselineapiprojectwithdataset559/tracker.tracker717/artf1757\",\n            \"folderId\": \"tracker1173\",\n            \"category\": \"Cat2242\",\n            \"group\": \"group3726\",\n            \"status\": \"InProgress480\",\n            \"statusClass\": \"Open\",\n            \"customer\": \"customer2261\",\n            \"priority\": 3,\n            \"estimatedEffort\": 0,\n            \"actualEffort\": 0,\n            \"remainingEffort\": 0,\n            \"autoSumming\": true,\n            \"points\": 0,\n            \"autoSummingPoints\": true,\n            \"closeDate\": null,\n            \"assignedTo\": \"nobody\",\n            \"teamId\": \"team1123\",\n            \"planningFolderId\": \"plan1173\",\n            \"flexFields\": [\n                {\n                    \"name\": \"Text Field473\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Multi Select15\",\n                    \"values\": [\n                        \"MSValue3\",\n                        \"MSValue2\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"UserField323\",\n                    \"values\": [\n                        \"apiUser77\"\n                    ],\n                    \"type\": \"USER\"\n                },\n                {\n                    \"name\": \"Single Select109\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Single Select372\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Single Select174\",\n                    \"values\": [\n                        \"SSValue2\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"ChildSingleSelect593\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"DateField803\",\n                    \"values\": null,\n                    \"type\": \"DATE\"\n                },\n                {\n                    \"name\": \"DateField242\",\n                    \"values\": null,\n                    \"type\": \"DATE\"\n                }\n            ],\n            \"createdBy\": \"apiUser77\",\n            \"lastModifiedDate\": \"2018-10-11T05:49:10.000+0000\",\n            \"createdDate\": \"2018-10-11T05:49:10.000+0000\",\n            \"version\": 100,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1757\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1757?$If-Match=W%2F%22100%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1757\",\n                    \"method\": \"DELETE\"\n                }\n            },\n            \"folderTitle\": \"Tracker108\",\n            \"folderPath\": \"tracker.tracker717\",\n            \"projectTitle\": \"baselineapiprojectwithdataset595\",\n            \"projectPath\": \"projects.baselineapiprojectwithdataset559\",\n            \"createdByFullname\": \"apiUser544\",\n            \"assignedToFullname\": \"No user\"\n        },\n        {\n            \"_type\": \"GetSimpleArtifactEntity\",\n            \"id\": \"artf1756\",\n            \"title\": \"PF_Team_Artifact221\",\n            \"description\": \"Pf artifact created via REST API\",\n            \"projectId\": \"proj1083\",\n            \"path\": \"projects.baselineapiprojectwithdataset559/tracker.tracker717/artf1756\",\n            \"folderId\": \"tracker1173\",\n            \"category\": \"Cat1709\",\n            \"group\": \"group139\",\n            \"status\": \"Open\",\n            \"statusClass\": \"Open\",\n            \"customer\": \"customer1869\",\n            \"priority\": 2,\n            \"estimatedEffort\": 0,\n            \"actualEffort\": 0,\n            \"remainingEffort\": 0,\n            \"autoSumming\": true,\n            \"points\": 0,\n            \"autoSummingPoints\": true,\n            \"closeDate\": null,\n            \"assignedTo\": \"nobody\",\n            \"teamId\": \"team1122\",\n            \"planningFolderId\": \"plan1172\",\n            \"flexFields\": [\n                {\n                    \"name\": \"Text Field473\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Multi Select15\",\n                    \"values\": [\n                        \"MSValue1\",\n                        \"MSValue2\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"UserField323\",\n                    \"values\": [\n                        \"apiUser77\"\n                    ],\n                    \"type\": \"USER\"\n                },\n                {\n                    \"name\": \"Single Select109\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Single Select372\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Single Select174\",\n                    \"values\": [\n                        \"SSValue1\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"ChildSingleSelect593\",\n                    \"values\": [\n                        \"CSSVal1\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"DateField803\",\n                    \"values\": null,\n                    \"type\": \"DATE\"\n                },\n                {\n                    \"name\": \"DateField242\",\n                    \"values\": null,\n                    \"type\": \"DATE\"\n                }\n            ],\n            \"createdBy\": \"apiUser77\",\n            \"lastModifiedDate\": \"2018-10-11T05:48:36.000+0000\",\n            \"createdDate\": \"2018-10-11T05:48:36.000+0000\",\n            \"version\": 100,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1756\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1756?$If-Match=W%2F%22100%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1756\",\n                    \"method\": \"DELETE\"\n                }\n            },\n            \"folderTitle\": \"Tracker108\",\n            \"folderPath\": \"tracker.tracker717\",\n            \"projectTitle\": \"baselineapiprojectwithdataset595\",\n            \"projectPath\": \"projects.baselineapiprojectwithdataset559\",\n            \"createdByFullname\": \"apiUser544\",\n            \"assignedToFullname\": \"No user\"\n        },\n        {\n            \"_type\": \"GetSimpleArtifactEntity\",\n            \"id\": \"artf1755\",\n            \"title\": \"Test Artifact983\",\n            \"description\": \"Test Artifact\",\n            \"projectId\": \"proj1083\",\n            \"path\": \"projects.baselineapiprojectwithdataset559/tracker.tracker717/artf1755\",\n            \"folderId\": \"tracker1173\",\n            \"category\": \"\",\n            \"group\": \"\",\n            \"status\": \"Open\",\n            \"statusClass\": \"Open\",\n            \"customer\": \"\",\n            \"priority\": 3,\n            \"estimatedEffort\": 20,\n            \"actualEffort\": 0,\n            \"remainingEffort\": 10,\n            \"autoSumming\": false,\n            \"points\": 10,\n            \"autoSummingPoints\": false,\n            \"closeDate\": null,\n            \"assignedTo\": \"nobody\",\n            \"teamId\": null,\n            \"planningFolderId\": null,\n            \"flexFields\": [\n                {\n                    \"name\": \"Text Field473\",\n                    \"values\": [\n                        null\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Multi Select15\",\n                    \"values\": null,\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"UserField323\",\n                    \"values\": null,\n                    \"type\": \"USER\"\n                },\n                {\n                    \"name\": \"Single Select109\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Single Select372\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"Single Select174\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"ChildSingleSelect593\",\n                    \"values\": [\n                        \"\"\n                    ],\n                    \"type\": \"String\"\n                },\n                {\n                    \"name\": \"DateField803\",\n                    \"values\": null,\n                    \"type\": \"DATE\"\n                },\n                {\n                    \"name\": \"DateField242\",\n                    \"values\": null,\n                    \"type\": \"DATE\"\n                }\n            ],\n            \"createdBy\": \"apiUser77\",\n            \"lastModifiedDate\": \"2018-10-11T05:25:17.000+0000\",\n            \"createdDate\": \"2018-10-11T05:25:17.000+0000\",\n            \"version\": 100,\n            \"_links\": {\n                \"self\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1755\"\n                },\n                \"update\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1755?$If-Match=W%2F%22100%22\",\n                    \"method\": \"PATCH\"\n                },\n                \"delete\": {\n                    \"href\": \"https://teamforge.collab.net/ctfrest/tracker/v1/artifacts/artf1755\",\n                    \"method\": \"DELETE\"\n                }\n            },\n            \"folderTitle\": \"Tracker108\",\n            \"folderPath\": \"tracker.tracker717\",\n            \"projectTitle\": \"baselineapiprojectwithdataset595\",\n            \"projectPath\": \"projects.baselineapiprojectwithdataset559\",\n            \"createdByFullname\": \"apiUser544\",\n            \"assignedToFullname\": \"No user\"\n        }\n    ],\n    \"paged\": true,\n    \"offset\": 0,\n    \"pageSize\": 3,\n    \"total\": 3\n}"}],"_postman_id":"c2f8f6b3-14c4-4957-9175-14daf3f94ee2"},{"name":"Update Artifact","event":[{"listen":"test","script":{"id":"5f0a8011-39e7-4d17-967b-43ae38a02ae7","exec":["var jsonData=JSON.parse(responseBody);","","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"3c8205cd-4d6a-4c43-abda-25643c20d6ea","exec":[""],"type":"text/javascript"}}],"id":"5f010df0-0793-4cfd-891e-70800a604830","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"W/*"}],"body":{"mode":"raw","raw":"{\r\n  \"title\": \"Updating an artifact for d4 color component check in compare baseline\",\r\n  \"status\": \"Pending\",\r\n  \"priority\": 2,\r\n  \"teamId\": \"{{Team_Id}}\",\r\n  \"assignedTo\": \"{{userName}}\"\r\n}"},"url":"{{HostName}}/ctfrest/tracker/v1/artifacts/{{Tracker_1_ArtifactID1}}","description":"<p>Updates an artifact in a Tracker</p>\n","urlObject":{"path":["ctfrest","tracker","v1","artifacts","{{Tracker_1_ArtifactID1}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5f010df0-0793-4cfd-891e-70800a604830"},{"name":"Update Baseline Definition","event":[{"listen":"test","script":{"id":"ca4cb852-338e-44fe-ba93-5747d583e8a0","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData=JSON.parse(responseBody);","var baseDefId2 = pm.environment.get(\"baseDefId2\");","","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Baseline definition '+baseDefId2+' updated sucessfully\"');","});","","postman.setEnvironmentVariable(\"baseDefId1\", jsonData.id);","","","var schema = {","    \"Id\"  : \"string\",","    \"Title\" : \"string\",","    \"Description\" : \"string\",","    \"Status\" : \"string\",","    \"Type\" : \"int\",","    \"ProjectId\" :  \"string\",","    \"Category\" : \"string\",","    \"Version\" : \"int\",","    \"CreatedBy\" :   \"string\",","    \"ModifiedBy\" : \"string\",","    \"ApprovedBy\" : \"string\",","    \"DateCreated\" : \"string\",","    \"DateModified\": \"string\",","    \"DateApproved\" : \"string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"56ae8c9c-1cdf-4229-b860-ff6728ec0572","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{def_version_no}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"baselineDef1_updated in rest\",\n  \"description\": \"testing with baseline definition compare feature updated in rest\",\n  \"category\": \"{{category_deployment_Id}}\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_2}}\",\n        \"filters\": {}\n      },\n      {\n        \"id\": \"{{TrackerID_3}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [\n        \"{{DocFolderId1}}\"\n      ],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      }\n    },\n    \"planningFolders\": {\n    \t\"planningFolderIds\": [\n    \t   \"{{ChildPF_Id}}\"\n    \t ],\n    \t \"pfTree\": {}\n\t},\n    \"frs\": {\n      \"releaseIds\": [\n        \"{{ReleaseID1}}\"\n      ]\n    },\n    \"scms\": [],\n    \"binaries\": []\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{baseDefId2}}?projectPath={{projectId}}","description":"<p>Use this API to update a baseline definition.</p>\n<p><strong>URL Parameters</strong> </p>\n<ul>\n<li><code>ProjectId/Path</code> (Required)</li>\n<li><code>Baseline Definition Id</code> (Required)</li>\n</ul>\n<p><strong>Headers</strong></p>\n<p><code>If-Match</code>—Provide the baseline definition version number.</p>\n<p><strong>Payload</strong> </p>\n<ol>\n<li>Title (Required) </li>\n<li>Description (Required)</li>\n<li>Filter (at least one filter is required)—Filter criteria for Trackers, Documents, FRS, SCM, Binaries.</li>\n<li>External baseline definitions (Optional)—Baseline definition Ids that need to be imported into this definition.</li>\n<li>External baseline IDs (Optional)—IDs of the external baseline that need to be imported into this definition.</li>\n</ol>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{baseDefId2}}"],"host":["{{HostName}}"],"query":[{"key":"projectPath","value":"{{projectId}}"}],"variable":[]}},"response":[{"id":"b67fe0f6-ee68-4c0b-8d60-c6865340c14b","name":"Update Baseline Definition","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"101"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"TestDefinition\",\n    \"description\": \"Test Update Baseline Definition\",\n    \"category\": \"basefldv1008\",\n    \"filter\": {\n        \"trackers\": [\n            {\n                \"id\": \"tracker1001\",\n                \"filters\": {}\n            }\n        ],\n        \"documentFolders\": {\n            \"folderIds\": [\n                \"docf1009\",\n                \"docf1015\",\n                \"docf1021\",\n                \"docf1022\",\n                \"docf1016\",\n                \"docf1023\",\n                \"docf1024\"\n            ],\n            \"version\": \"latest\",\n            \"filters\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"isInvalid\": false\n            }\n        },\n        \"planningFolders\": {\n            \"planningFolderIds\": [\n                \"plan1006\"\n            ]\n        },\n        \"frs\": {\n            \"releaseIds\": [\n                \"rel1002\",\n                \"rel1001\",\n                \"rel1005\"\n            ]\n        },\n        \"scms\": [],\n        \"binaries\": []\n    },\n    \"nestedBaselineDefinitions\": [],\n    \"nestedExternalBaselines\": []\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/bdef1080"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"code\": 200,\n    \"message\": \"Baseline definition bdef1080 updated sucessfully\"\n}"}],"_postman_id":"56ae8c9c-1cdf-4229-b860-ff6728ec0572"},{"name":"List Baseline Definition","event":[{"listen":"test","script":{"id":"753feeb3-ba1d-4663-b052-c494e3b08335","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","    \"Offset\" : \"int\",","    \"Limit\" : \"int\",","    \"TotalCount\" : \"int\",","     \"BaselineDefinitions\": [","         \"string\"","        ]","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","//   \"Id\" : \"string\",","//             \"Title\" :  \"string\",","//             \"Description\" : \"string\",","//             \"Category\" : \"string\",","//             \"Type\"  : \"string\",","//             \"ProjectId\" : \"string\",","//             \"Version\" :   \"int\",","//             \"CreatedBy\" : \"string\",","//             \"UpdatedBy\" :  \"string\",","//             \"DateCreated\" : \"string\",","//             \"DateUpdated\" : \"string\",","//             \"Filters\": { ","//                 \"TrackerFilterIds\" : [","//                     \"string\"","//                     ],  ","//                 \"TrackerFilterGroupIds\" : [","//                     \"string\"","//                     ],","//                 \"DocumentFilterIds\" : [","//                     \"string\"","//                     ],","//                 \"DocumentFilterGroupIds\" : [","//                     \"string\"","//                     ],","//                 \"FrsFilterIds\" : [","//                     \"string\"","//                     ],","//                 \"ScmFilterIds\" : [","//                     \"string\"","//                     ],","//                 \"BinaryFilterIds\" : [","//                     \"string\"","//                     ]","//                 }"],"type":"text/javascript"}}],"id":"c66cbe61-e70e-4c6d-8359-53186603f27d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/search","description":"<p>Creates the list of baseline definitions</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","search"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"9b6a80b4-bc43-4067-ae2b-b98f688dfcff","name":"List Baseline Definition","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:08:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"383"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"baselineDefinitions\": [\n        {\n            \"id\": \"bdef1537\",\n            \"title\": \"baselineDef1_546\",\n            \"description\": \"testing with baseline definition compare feature\",\n            \"category\": \"Delivery Baseline\",\n            \"type\": \"Explicit\",\n            \"projectId\": \"proj1088\",\n            \"version\": 100,\n            \"createdBy\": \"apiUser997\",\n            \"modifiedBy\": \"apiUser997\",\n            \"dateCreated\": \"10/21/2018\",\n            \"dateLastModified\": \"10/21/2018\",\n            \"filter\": {\n                \"trackers\": null,\n                \"planningFolders\": {\n                    \"planningFolderIds\": null,\n                    \"pfTree\": {\n                        \"planningfolders\": null\n                    }\n                },\n                \"documentFolders\": {\n                    \"folderIds\": null,\n                    \"version\": \"\",\n                    \"filters\": {},\n                    \"fields\": null,\n                    \"docTree\": {\n                        \"documentFolder\": null,\n                        \"totalCount\": 0\n                    }\n                },\n                \"scms\": null,\n                \"frs\": {\n                    \"releaseIds\": null\n                },\n                \"binaries\": null\n            }\n        }\n    ],\n    \"limit\": 10,\n    \"totalCount\": 1\n}"}],"_postman_id":"c66cbe61-e70e-4c6d-8359-53186603f27d"},{"name":"Get SCM Tags","event":[{"listen":"test","script":{"id":"f362045a-2fa8-4fd8-8d21-cc470eb17b4f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","",""],"type":"text/javascript"}}],"id":"e7e1392f-5d1c-4095-9cea-29a87b9eb8ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/scm/repsid/tags?limit=5&start=0","description":"<p>Gets tag details from SCM repositories</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","scm","repsid","tags"],"host":["{{HostName}}"],"query":[{"key":"limit","value":"5"},{"key":"start","value":"0"}],"variable":[]}},"response":[],"_postman_id":"e7e1392f-5d1c-4095-9cea-29a87b9eb8ff"},{"name":"Search SCM Tags","event":[{"listen":"test","script":{"id":"430819dd-37ba-47cf-98df-86eebb2cc25e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","",""],"type":"text/javascript"}}],"id":"f6729fd7-8c72-4df1-9ae3-5ae8622ab3de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/scm/repsid/tags?limit=5&start=0&searchString=tag_id","description":"<p>Searches for tags in SCM repositories</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","scm","repsid","tags"],"host":["{{HostName}}"],"query":[{"key":"limit","value":"5"},{"key":"start","value":"0"},{"key":"searchString","value":"tag_id"}],"variable":[]}},"response":[],"_postman_id":"f6729fd7-8c72-4df1-9ae3-5ae8622ab3de"},{"name":"Get Binaries List","event":[{"listen":"test","script":{"id":"b04d220d-413b-41d6-94f3-d3f39e21aa37","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"59c6e58d-1776-49f8-af62-ef558f8029f1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/binaries/by-project/{{projectId}}","description":"<p>Gets the list of binary repositories</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","binaries","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"59c6e58d-1776-49f8-af62-ef558f8029f1"},{"name":"Delete Baseline","id":"74110907-c73a-4a24-af93-e5c86003dded","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImF1ZCI6WyJzb2FwNjAiLCJjdGYiLCJzdm4iLCJnZXJyaXQiXSwibmJmIjoxNTg4NzQzNzE5LCJhbXIiOlsidXJuOmN0ZjphbXI6dXB3ZCJdLCJpc3MiOiJ1cm46Y3RmOmlzczp0Zi1pZHAiLCJleHAiOjE1ODg3NDczMTksImlhdCI6MTU4ODc0MzcxOSwianRpIjoiYzE3MDkwMTMtZTIwNC00ZmY2LTk0YTYtMTk3MzVlMDIzMzk1In0.ZekeqiqZmtm5xyOZ5K6beVZP8NE9aQ_RAJisirDW8FiLGV4UJYlC2HtdNVLtBkVYgxcrEjs3YeBzuENencyg4jvvEDyY2o93glTswKZsXZIxF6uXL36FPj-wkmtO-aSVOQfqACGaG5_BUqQ_cJBWzlQZkq_SsgDIXS1Z8PAktdM","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": \"baseline base1002 deleted\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baselineId}}","description":"<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code>Since TeamForge 20.1\n</code></pre><p>Deletes a baseline that is in either Open or Rejected meta status. </p>\n<p>Response Codes</p>\n<ul>\n<li>500 - Internal Server Error</li>\n<li>400 - Invalid Baseline Id</li>\n<li>200 - Deleted Successfully</li>\n<li>403 - Permission Denied</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{baselineId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6a13d6af-fec4-46b2-871a-383d68b409bc","name":"Delete Baseline—Permission Denied","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImF1ZCI6WyJzb2FwNjAiLCJjdGYiLCJzdm4iLCJnZXJyaXQiXSwibmJmIjoxNTg4NzQzNzE5LCJhbXIiOlsidXJuOmN0ZjphbXI6dXB3ZCJdLCJpc3MiOiJ1cm46Y3RmOmlzczp0Zi1pZHAiLCJleHAiOjE1ODg3NDczMTksImlhdCI6MTU4ODc0MzcxOSwianRpIjoiYzE3MDkwMTMtZTIwNC00ZmY2LTk0YTYtMTk3MzVlMDIzMzk1In0.ZekeqiqZmtm5xyOZ5K6beVZP8NE9aQ_RAJisirDW8FiLGV4UJYlC2HtdNVLtBkVYgxcrEjs3YeBzuENencyg4jvvEDyY2o93glTswKZsXZIxF6uXL36FPj-wkmtO-aSVOQfqACGaG5_BUqQ_cJBWzlQZkq_SsgDIXS1Z8PAktdM","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": \"baseline base1002 deleted\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baselineId}}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 May 2020 05:44:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"171"},{"key":"Set-Cookie","value":"JSESSIONID=JD7ImzLaVFw-OUISRrXdhKRe-7g38frdcRsjBJyg.tf; path=/ctfrest; secure; HttpOnly"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"PermissionDenied\",\n    \"message\": \"User do not have sufficient permissions: Permission Denied\"\n}"},{"id":"9899254c-254c-4eb8-983f-57e30dd3f8a7","name":"Delete Baseline—Successful","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"Bearer eyJraWQiOiIxIiwiYWxnIjoiUlMyNTYifQ.eyJzdWIiOiJhZG1pbiIsImF1ZCI6WyJzb2FwNjAiLCJjdGYiLCJzdm4iLCJnZXJyaXQiXSwibmJmIjoxNTg4NzQzNzE5LCJhbXIiOlsidXJuOmN0ZjphbXI6dXB3ZCJdLCJpc3MiOiJ1cm46Y3RmOmlzczp0Zi1pZHAiLCJleHAiOjE1ODg3NDczMTksImlhdCI6MTU4ODc0MzcxOSwianRpIjoiYzE3MDkwMTMtZTIwNC00ZmY2LTk0YTYtMTk3MzVlMDIzMzk1In0.ZekeqiqZmtm5xyOZ5K6beVZP8NE9aQ_RAJisirDW8FiLGV4UJYlC2HtdNVLtBkVYgxcrEjs3YeBzuENencyg4jvvEDyY2o93glTswKZsXZIxF6uXL36FPj-wkmtO-aSVOQfqACGaG5_BUqQ_cJBWzlQZkq_SsgDIXS1Z8PAktdM","type":"text"}],"body":{"mode":"raw","raw":"{\n\t\"comment\": \"baseline base1002 deleted\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baselineId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 06 May 2020 05:47:08 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"37"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"Baseline data deleted successfully.\""}],"_postman_id":"74110907-c73a-4a24-af93-e5c86003dded"}],"id":"0e5fea7d-f755-4631-9a10-678f109a75f1","description":"<p>Provides the list of APIs used before or while creating the item level baselines and baseline definitions.</p>\n","event":[{"listen":"prerequest","script":{"id":"15777abd-18c6-4a0a-84e4-ce98dd502852","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"40a9de92-295c-42cf-b444-735c1f6aa0d6","type":"text/javascript","exec":[""]}}],"_postman_id":"0e5fea7d-f755-4631-9a10-678f109a75f1"},{"name":"Compare Baselines","item":[{"name":"Compare Baselines - All Filter Criteria from All Components","event":[{"listen":"test","script":{"id":"1a3c5d4a-2922-42bc-abb3-e5dab3621b8b","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","var Tracker3 = pm.environment.get(\"TrackerTitle_3\");","var Tracker0 = pm.environment.get(\"TrackerTitle_0\");","var Tracker1 = pm.environment.get(\"TrackerTitle_1\");","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var DocId3 = pm.environment.get(\"DocId3\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","","pm.test(\"color component matches with d2 (Deleted) for Tracker 4\", function() {","    pm.expect(pm.response.text()).to.include('\"name\": \"' + Tracker3 + '\"');","    pm.expect(pm.response.text()).to.include('\"name\": \"' + Tracker0 + '\"');","    pm.expect(pm.response.text()).to.include('\"name\": \"' + Tracker1 + '\"');","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created) for Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_2_ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","pm.test(\"color component matches with d1 (No changes) for file releases\", function() {","    for (i = 0; i < 5; i++) {","        if (jsonData[i].type == \"File Releases\") {","            pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","        }","    }","});","pm.test(\"color component matches with d4 for artifact that get modified\",function(){","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 6; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_1_ArtifactID1) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d1 (No changes) for Document with doc Id\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].type == \"Document\") {","            for (j = 0; j < 3; j++) {","                if (jsonData[i].type.compareItemList[j].documentId == DocId3) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","                }","            }","        }","    }","});","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"d3dd676c-1243-4514-bbb9-63fb8dc46ede","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=all","description":"<p>Gets the entire filter criteria from all components, when two baselines are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"d3dd676c-1243-4514-bbb9-63fb8dc46ede"},{"name":"Compare Baselines using Invalid Project ID","event":[{"listen":"test","script":{"id":"1e6eae4e-4846-4c6e-a921-e96ae60361ef","exec":["pm.test(\"Status code is 404\", function() {","    pm.response.to.have.status(404);","});","","pm.test(\"Status code name has string- Not Found\", function () {","    pm.response.to.have.status(\"Not Found\");","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});","","var jsonData = JSON.parse(responseBody);   ","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"25ce6b63-ae19-4dfe-9ae5-87402c0edcb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/proj0001/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=all","description":"<p>Gets the \"Invalid Project ID\" error while trying to compare baselines using the project id of a deleted project</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","proj0001","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"25ce6b63-ae19-4dfe-9ae5-87402c0edcb8"},{"name":"Compare Baselines using Invalid Baseline ID","event":[{"listen":"test","script":{"id":"964fe0cb-0b39-4d8c-be38-b0799ce7cedd","exec":["pm.test(\"Status code is 400\", function() {","    pm.response.to.have.status(400);","});","","pm.test(\"Status code name has string- Bad Request\", function () {","    pm.response.to.have.status(\"Bad Request\");","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"c800e922-88e6-4158-a2f4-e2425547d0cc","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1=base0001&baselineId2={{baseId2}}&compareBy=all&application=all","description":"<p>Gets the \"Invalid Baseline ID\" error while trying to compare baselines using the baseline id of a deleted baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"base0001"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"c800e922-88e6-4158-a2f4-e2425547d0cc"},{"name":"Compare Baselines using Same Baseline ID","event":[{"listen":"test","script":{"id":"e90edf8e-0d18-4491-8181-74fe8b13212d","exec":["pm.test(\"Status code is 400\", function() {","    pm.response.to.have.status(400);","});","","pm.test(\"Status code name has string- Bad Request\", function () {","    pm.response.to.have.status(\"Bad Request\");","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"Please choose different baseline ids\");","});","","","var jsonData = JSON.parse(responseBody);   ","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"f3ba15ec-1217-460d-8ece-e6872109fc95","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId1}}&compareBy=all&application=all","description":"<p>Gets an error while trying to compare baselines having the same baseline ids</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId1}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"f3ba15ec-1217-460d-8ece-e6872109fc95"},{"name":"Compare Baselines without Baseline View Permission","event":[{"listen":"test","script":{"id":"17bbce5b-9745-44f0-812c-6d537f256bd3","exec":["pm.test(\"Status code is 401\", function() {","    pm.response.to.have.status(401);","});","","pm.test(\"Status code name has string- Unauthorized\", function () {","    pm.response.to.have.status('Unauthorized');","});","","pm.test(\"Body matches string - permission denied\", function () {","    pm.expect(pm.response.text()).to.include('\"You must have \\'view\\' permission to perform this action\"');","});",""],"type":"text/javascript"}}],"id":"0ce0584c-d752-41ee-bbc1-35644c827811","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=all","description":"<p>A \"401 Unauthorized\" error is thrown, when a user without baseline view permission tries to compare baselines via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"0ce0584c-d752-41ee-bbc1-35644c827811"},{"name":"Compare Baselines - Show Only Differences in Filter Criteria of All Components","event":[{"listen":"test","script":{"id":"6d62739e-e21f-45da-a8c7-41da2bc94c19","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","var Tracker3 = pm.environment.get(\"TrackerTitle_3\");","var Tracker0 = pm.environment.get(\"TrackerTitle_0\");","var Tracker1 = pm.environment.get(\"TrackerTitle_1\");","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var DocId3 = pm.environment.get(\"DocId3\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","","pm.test(\"color component matches with d2 (Deleted) for Tracker 4\", function() {","    pm.expect(pm.response.text()).to.include('\"name\": \"' + Tracker3 + '\"');","    pm.expect(pm.response.text()).to.include('\"name\": \"' + Tracker0 + '\"');","    pm.expect(pm.response.text()).to.include('\"name\": \"' + Tracker1 + '\"');","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created) for Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_2_ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","pm.test(\"color component matches with d4 for artifact that get modified\",function(){","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 6; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_1_ArtifactID1) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"da4be574-9754-417d-8aa2-f07b5b4dcd9f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=all","description":"<p>Show only the differences in the filter criteria of all components, when comparing two baselines</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"da4be574-9754-417d-8aa2-f07b5b4dcd9f"},{"name":"Compare Baselines - All Filter Criteria from Tracker Component","event":[{"listen":"test","script":{"id":"0f4f8075-c649-4655-a2c7-b4eb6d364ef4","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var DocId3 = pm.environment.get(\"DocId3\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","","pm.test(\"color component matches with d2 (Deleted) for Tracker 4\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created) for Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_2_ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","pm.test(\"color component matches with d4 for artifact that get modified\",function(){","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 6; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_1_ArtifactID1) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d1 (No Change) in artifact\",function(){","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 6; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_1_ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","                }","            }","        }","    }","});","","","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"cad7d32a-6e98-4318-a27b-4ad4e8d23bf4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=Tracker","description":"<p>Gets the entire filter criteria from Tracker component, when two baselines are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"Tracker"}],"variable":[]}},"response":[],"_postman_id":"cad7d32a-6e98-4318-a27b-4ad4e8d23bf4"},{"name":"Compare Baselines - Show Only Differences in Filter Criteria of Tracker Component","event":[{"listen":"test","script":{"id":"b8a0d38f-3d7a-4c4a-b9c1-4e4db64a4315","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var DocId3 = pm.environment.get(\"DocId3\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","","pm.test(\"color component matches with d2 (Deleted) for Tracker 4\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created) for Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 11; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_2_ArtifactID0) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","pm.test(\"color component matches with d4 for artifact that get modified\",function(){","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 6; j++) {","                if (jsonData[i].name.compareItemList[j].artifactId == Tracker_1_ArtifactID1) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","","","var jsonData = JSON.parse(responseBody);   ","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"4941a698-6752-47e7-8de6-3451b3717103","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=Tracker","description":"<p>Shows only the differences in the filter criteria of Tracker component of the two baselines being compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"Tracker"}],"variable":[]}},"response":[],"_postman_id":"4941a698-6752-47e7-8de6-3451b3717103"},{"name":"Compare Baselines - All Filter Criteria from Document Component","event":[{"listen":"test","script":{"id":"90f90673-d163-42b2-830a-6c6ee2a78835","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","var DocId1 = pm.environment.get(\"DocId1\");","var DocId2 = pm.environment.get(\"DocId2\");","var DocId3 = pm.environment.get(\"DocId3\");","","pm.test(\"color component matches with d2 (Deleted) for Documents\", function() {","    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\",\\n\\t\\t\\t\\t\"documentId\": \"'+DocId2+'\"');","});","","pm.test(\"color component matches with d1 (No Change) for Documents\", function() {","    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\",\\n\\t\\t\\t\\t\"documentId\": \"'+DocId3+'\"');","});","","var jsonData = JSON.parse(responseBody);  ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"e90db578-42ca-479d-afe0-9ae986c25855","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=document","description":"<p>Gets the entire filter criteria from Document component, when two baselines are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"document"}],"variable":[]}},"response":[],"_postman_id":"e90db578-42ca-479d-afe0-9ae986c25855"},{"name":"Compare Baselines - Show Only Differences in Filter Criteria of Document Component","event":[{"listen":"test","script":{"id":"12b8d874-b6d5-4877-ab64-18f3974cf84a","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","var DocId2 = pm.environment.get(\"DocId2\");","","pm.test(\"color component matches with d2 (Deleted) for Documents\", function() {","    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\",\\n\\t\\t\\t\\t\"documentId\": \"'+DocId2+'\"');","});","","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"e34c3f77-6851-469d-ae98-0b16b8117b9c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=document","description":"<p>Shows only the differences in the filter criteria of Document component of the two baselines being compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"document"}],"variable":[]}},"response":[],"_postman_id":"e34c3f77-6851-469d-ae98-0b16b8117b9c"},{"name":"Compare Baselines - All Filter Criteria from File Release Component","event":[{"listen":"test","script":{"id":"53252c09-ef2d-461a-97d0-6ee3c4a00e00","exec":["pm.test(\"Status code is 200\", function() {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","","pm.test(\"color component matches with d1 (No changes) for file releases\", function() {","    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","    ","});","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"83f559a4-64d6-4fee-ab86-515ec23d3a4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=frs","description":"<p>Gets the entire filter criteria from File Release component, when two baselines are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"frs"}],"variable":[]}},"response":[],"_postman_id":"83f559a4-64d6-4fee-ab86-515ec23d3a4a"},{"name":"Compare Baselines - Show Only Differences in Filter Criteria of File Release Component","event":[{"listen":"test","script":{"id":"ab8a2e5b-b0c2-40ba-9868-9b5c99fbf302","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"There is no change in FRS. Hence it shows null value\", function() {","   pm.expect(pm.response.text()).to.include('[]');","});","","","var jsonData = JSON.parse(responseBody);   ","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"57697c82-8914-4009-90e9-3e91222b6f9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=frs","description":"<p>Shows only the differences in the filter criteria of File Release component of the two baselines being compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"frs"}],"variable":[]}},"response":[],"_postman_id":"57697c82-8914-4009-90e9-3e91222b6f9d"},{"name":"Compare Implicit Baseline Definitions - All Filter Criteria from All Components","event":[{"listen":"test","script":{"id":"2c4541c1-a9e8-4c78-b701-bf0bf95ff2d9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var DocId3 = pm.environment.get(\"DocId3\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","var SubChildPF_title = pm.environment.get(\"SubChildPF_title\");","var PackageTitle = pm.environment.get(\"PackageTitle\");","","pm.test(\"color component matches with d1 (No change) in Tracker 1 definitions\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 2; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"title\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d2 (Deleted) in Tracker 4\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 18; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"priority\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created definition) in Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"priority\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d4 (Modified) in PlanningFolder\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == \"Planning Folders\") {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].value == SubChildPF_title) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d2 (Deleted) in DocumentFolders\", function() {","    for (i = 0; i < 2; i++) {","        if (jsonData[i].name == \"Document Folders\") {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].value == \"Root Folder,DocFolder1,ChildDocFolder\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d1 (No change) in FileReleases\", function() {","    for (i = 0; i < 2; i++) {","        if (jsonData[i].type == \"File Releases\") {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].type.compareItemList[j].packageName == PackageTitle) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","                }","            }","        }","    }","});","","","var jsonData = JSON.parse(responseBody);  ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"d12dab6e-c931-41ca-87b8-53f4bbc2406d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=all","description":"<p>Gets the entire filter criteria from all components, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"all"}],"variable":[]}},"response":[],"_postman_id":"d12dab6e-c931-41ca-87b8-53f4bbc2406d"},{"name":"Compare Implicit Baseline Definitions - All Filter Criteria from Tracker Component","event":[{"listen":"test","script":{"id":"4c3c361b-9f6a-470f-a973-94dc01d8a176","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","var SubChildPF_title = pm.environment.get(\"SubChildPF_title\");","","","pm.test(\"color component matches with d1 (No change) in Tracker 1 definitions\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_0) {","            for (j = 0; j < 2; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"title\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d2 (Deleted) in Tracker 4\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 18; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"priority\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created definition) in Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"priority\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d4 (Modified) in PlanningFolder\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == \"Planning Folders\") {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].value == SubChildPF_title) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"5ed3d748-9e5b-4148-aac1-dccc199b5c4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=tracker","description":"<p>Gets the entire filter criteria from Tracker component, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"tracker"}],"variable":[]}},"response":[],"_postman_id":"5ed3d748-9e5b-4148-aac1-dccc199b5c4f"},{"name":"Compare Implicit Baseline Definitions - Show Only Differences in Filter Criteria of Tracker Component","event":[{"listen":"test","script":{"id":"c2c3ba4e-b5b0-4b28-8388-d11744991bae","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var ArtifactID0 = pm.environment.get(\"ArtifactID0\");","var Tracker_2_ArtifactID0 = pm.environment.get(\"Tracker_2_ArtifactID0\");","var TrackerID = pm.environment.get(\"TrackerID\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var Tracker_1_ArtifactID1 = pm.environment.get(\"Tracker_1_ArtifactID1\");","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","var SubChildPF_title = pm.environment.get(\"SubChildPF_title\");","","pm.test(\"color component matches with d2 (Deleted) in Tracker 4\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID) {","            for (j = 0; j < 18; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"priority\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d3 (Newly created definition) in Tracker 2\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == TrackerID_1) {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].attribute == \"priority\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d3\"');","                }","            }","        }","    }","});","","pm.test(\"color component matches with d4 (Modified) in PlanningFolder\", function() {","    for (i = 0; i < 3; i++) {","        if (jsonData[i].name == \"Planning Folders\") {","            for (j = 0; j < 1; j++) {","                if (jsonData[i].name.compareItemList[j].value == SubChildPF_title) {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d4\"');","                }","            }","        }","    }","});","","","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"c463c19c-7461-4017-931b-ee8abf99f933","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=tracker","description":"<p>Shows only the differences in the filter criteria of Tracker component, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"tracker"}],"variable":[]}},"response":[],"_postman_id":"c463c19c-7461-4017-931b-ee8abf99f933"},{"name":"Compare Implicit Baseline Definitions - All Filter Criteria from Document Component","event":[{"listen":"test","script":{"id":"436978cc-1b0d-4fbb-9b82-58baa808271b","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","","pm.test(\"color component matches with d2 (Deleted) in DocumentFolders\", function() {","    for (i = 0; i < 2; i++) {","        if (jsonData[i].name == \"Document Folders\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","        }","    }","});","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"fcc0812a-4a55-403a-a720-1a48be5f98e6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=document","description":"<p>Gets the entire filter criteria from Document component, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"document"}],"variable":[]}},"response":[],"_postman_id":"fcc0812a-4a55-403a-a720-1a48be5f98e6"},{"name":"Compare Implicit Baseline Definitions - Show Only Differences in Filter Criteria of Document Component","event":[{"listen":"test","script":{"id":"20e0a29a-1a91-4b1c-a992-d0434fd44f88","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","pm.test(\"color component matches with d2 (Deleted) in DocumentFolders\", function() {","    for (i = 0; i < 2; i++) {","        if (jsonData[i].name == \"Document Folders\") {","                    pm.expect(pm.response.text()).to.include('\"color_component\": \"d2\"');","        }","    }","});","","","var jsonData = JSON.parse(responseBody);   ","","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"9662d966-4afe-49aa-96f1-fe9a4372f1da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=document","description":"<p>Shows only the differences in the filter criteria of Document component, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"document"}],"variable":[]}},"response":[],"_postman_id":"9662d966-4afe-49aa-96f1-fe9a4372f1da"},{"name":"Compare Implicit Baseline Definitions - All Filter Criteria from File Release Component","event":[{"listen":"test","script":{"id":"188a8a7b-46c2-4dde-b987-b8c9dcdd7139","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var PackageTitle = pm.environment.get(\"PackageTitle\");","","pm.test(\"color component matches with d1 (No change) in FileReleases\", function() {","        pm.expect(pm.response.text()).to.include('\"color_component\": \"d1\"');","});","","","var jsonData = JSON.parse(responseBody);   ","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"ed608594-14c9-4a29-8580-cc3468802c12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=all&application=frs","description":"<p>Gets the entire filter criteria from File Release component, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"all"},{"key":"application","value":"frs"}],"variable":[]}},"response":[],"_postman_id":"ed608594-14c9-4a29-8580-cc3468802c12"},{"name":"Compare Implicit Baseline Definitions - Show Only Differences in Filter Criteria of File Release Component","event":[{"listen":"test","script":{"id":"460a50f9-3add-4de1-8291-62a5c1e633a3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"There is no change in FRS. Hence it shows null value\", function() {","   pm.expect(pm.response.text()).to.include('[]');","});","","","var jsonData = JSON.parse(responseBody);   ","","var schema = {","  \"TrackerFilterIds\": \"[]string\",","  \"TrackerFilterGroupIds\": \"[]string\",","  \"DocumentFilterIds\" : \"[]string\",","  \"DocumentFilterGroupIds\" : \"[]string\",","  \"FrsFilterIds\" : \"[]string\","," \"ScmFilterIds\"  : \"[]string\","," \"BinaryFilterIds\" : \"[]string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});",""],"type":"text/javascript"}}],"id":"7bc6988b-32f4-4820-89d7-a49b25bd0dd5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/compare?baselineId1={{baseId1}}&baselineId2={{baseId2}}&compareBy=diff&application=frs","description":"<p>Shows only the differences in the filter criteria of File Release component, when implicit baseline definitions are compared</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","compare"],"host":["{{HostName}}"],"query":[{"key":"baselineId1","value":"{{baseId1}}"},{"key":"baselineId2","value":"{{baseId2}}"},{"key":"compareBy","value":"diff"},{"key":"application","value":"frs"}],"variable":[]}},"response":[],"_postman_id":"7bc6988b-32f4-4820-89d7-a49b25bd0dd5"},{"name":"Get Baseline Definition By ID","event":[{"listen":"test","script":{"id":"cfddff2d-c55b-41f1-afa6-8b315069f2a1","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData=JSON.parse(responseBody);","pm.environment.set(\"def_version_no\", jsonData.version);","","postman.setEnvironmentVariable(\"baseDefId1\", jsonData.id);","","","var schema = {","    \"Id\"  : \"string\",","    \"Title\" : \"string\",","    \"Description\" : \"string\",","    \"Status\" : \"string\",","    \"Type\" : \"int\",","    \"ProjectId\" :  \"string\",","    \"Category\" : \"string\",","    \"Version\" : \"int\",","    \"CreatedBy\" :   \"string\",","    \"ModifiedBy\" : \"string\",","    \"ApprovedBy\" : \"string\",","    \"DateCreated\" : \"string\",","    \"DateModified\": \"string\",","    \"DateApproved\" : \"string\"","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"71dce000-379a-483a-8748-1d3e25e27d2b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{baseDefId2}}","description":"<p>Gets the baseline definition using the baseline id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{baseDefId2}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"71dce000-379a-483a-8748-1d3e25e27d2b"},{"name":"Get Root Planning Folder ID","event":[{"listen":"test","script":{"id":"7901d87e-7f02-4b9b-9c86-00fc2c0583fe","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData=JSON.parse(responseBody);","var parentID = pm.environment.get(\"ParentPF_Id\");","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(parentID);","});"],"type":"text/javascript"}}],"id":"698dfdc0-2fb1-431c-9f7a-63fea7716a89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/planningfolders/by-project/{{projectId}}/rootPf","description":"<p>Gets the root planning folder id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","planningfolders","by-project","{{projectId}}","rootPf"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"698dfdc0-2fb1-431c-9f7a-63fea7716a89"},{"name":"Get Root Document Folder ID","event":[{"listen":"test","script":{"id":"7f67ae4e-8f60-40e6-ab5d-4c4974ca13c2","type":"text/javascript","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData=JSON.parse(responseBody);","var parentID = pm.environment.get(\"DocRootFolderId\");","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(parentID);","});"]}}],"id":"716e64d3-9f79-4e4f-b4da-c55b8296207c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/documentfolders/by-project/{{projectId}}/rootDocument","description":"<p>Gets the root Document folder id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","documentfolders","by-project","{{projectId}}","rootDocument"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"716e64d3-9f79-4e4f-b4da-c55b8296207c"},{"name":"Get Root Planning Folder ID using Invalid Project ID","event":[{"listen":"test","script":{"id":"3a1259fe-fe2e-4e8a-98cd-73da05617509","type":"text/javascript","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"]}}],"id":"4ee2c4c8-d599-40de-9bd4-bfcdc586012c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/planningfolders/by-project/proj0000/rootPf","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while fetching the root planning folder id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","planningfolders","by-project","proj0000","rootPf"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4ee2c4c8-d599-40de-9bd4-bfcdc586012c"},{"name":"Get Root Document Folder ID using Invalid Project ID","event":[{"listen":"test","script":{"id":"986c3b76-41c1-4a02-a842-abb5fca47c52","type":"text/javascript","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"]}}],"id":"b85f3063-bd5b-4b25-8f43-4a7c112f546b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/documentfolders/by-project/proj0000/rootDocument","description":"<p>A \"400 Not Found\" error is thrown, when an invalid project id is used while fetching the root document folder id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","documentfolders","by-project","proj0000","rootDocument"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b85f3063-bd5b-4b25-8f43-4a7c112f546b"}],"id":"4002035f-077f-42f8-a735-f2fafad9a251","description":"<p>Provides the list of APIs used when comparing baselines and baseline definitions.</p>\n","event":[{"listen":"prerequest","script":{"id":"cea27333-66ad-446f-9376-60500a99fc38","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a9beddd2-c8b4-4161-91e3-a9851f2503ca","type":"text/javascript","exec":[""]}}],"_postman_id":"4002035f-077f-42f8-a735-f2fafad9a251"},{"name":"Baseline Settings -  Attribute Management","item":[{"name":"Get User Roles with Baseline Reviewer Permission","event":[{"listen":"test","script":{"id":"48e969c8-e211-426b-ac37-88d2b35765a9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"role Id and Role name should match existing variable\", function () {","    pm.expect(pm.response.text()).to.include('\"RoleId\": \"'+pm.environment.get(\"roleId\")+'\"');","     pm.expect(pm.response.text()).to.include('\"RoleName\": \"'+pm.environment.get(\"projectrole\")+'\"');","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","  \"RoleId\": \"string\",","  \"RoleName\": \"string\",","  \"Description\": \"string\",","  \"CreatedInProject\": \"string\",","  \"Type\": \"string\",","};","","","pm.test('Schema is valid',function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","    "],"type":"text/javascript"}}],"id":"23fd43e2-3130-41cf-8947-023219a2d267","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/review/roles/baseline/project/{{projectId}}","description":"<p>Use this API to get the list of user roles that have <code>Baseline Review</code> permission.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Proeject Id/Path</code> (Required)</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","review","roles","baseline","project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"1bd61a50-0f65-4559-9933-7897d47e7bec","name":"Get User Roles with Baseline Reviewer Permission","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/review/roles/baseline/project/proj1008"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"RoleData\": [\n        {\n            \"RoleId\": \"role1322\",\n            \"RoleName\": \"baseline\",\n            \"Description\": \"baseline\",\n            \"CreatedInProject\": \"proj1008\",\n            \"Type\": \"Project\"\n        },\n        {\n            \"RoleId\": \"role1011\",\n            \"RoleName\": \"Product Developer\",\n            \"Description\": \"People who develop the software application, taking story input from the product managers, breaking them down into story tasks, estimating them, and implementing them when backlogged to a release or an iteration.\",\n            \"CreatedInProject\": \"proj1008\",\n            \"Type\": \"Project\"\n        }\n    ]\n}"}],"_postman_id":"23fd43e2-3130-41cf-8947-023219a2d267"},{"name":"Get User Roles with Baseline Reviewer Permission by Unauthorized User","event":[{"listen":"test","script":{"id":"a098fb97-de82-4a27-9ff7-2172effb7c59","exec":["pm.test(\"Status code is 401- Unauthorized\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string - unauthorized message\", function () {","    pm.expect(pm.response.text()).to.include('\"You must be a baseline admin to perform this action\"');","});","","pm.test(\"Status code name has string - Unauthorized\", function () {","    pm.response.to.have.status(\"Unauthorized\");","});","","","var jsonData = JSON.parse(responseBody);","","var schema = {","  \"RoleId\": \"string\",","  \"RoleName\": \"string\",","  \"Description\": \"string\",","  \"CreatedInProject\": \"string\",","  \"Type\": \"string\",","};","","","pm.test('Schema is valid',function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","    "],"type":"text/javascript"}}],"id":"12b15caa-7b41-4b0a-a81b-a6e6f639ab79","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/review/roles/baseline/project/{{projectId}}","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to get the user roles with baseline reviewer permission via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","review","roles","baseline","project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"12b15caa-7b41-4b0a-a81b-a6e6f639ab79"},{"name":"Get User Roles with Baseline Reviewer Permission using Invalid Project ID","event":[{"listen":"test","script":{"id":"be2b2180-20b2-4b79-a159-0699b3b56a0d","exec":["pm.test(\"Status code is 404- Not Found\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string - Invalid project id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});","","pm.test(\"Status code name has string - NotFound\", function () {","    pm.response.to.have.status(\"Not Found\");","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","  \"RoleId\": \"string\",","  \"RoleName\": \"string\",","  \"Description\": \"string\",","  \"CreatedInProject\": \"string\",","  \"Type\": \"string\",","};","","","pm.test('Schema is valid',function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","    "],"type":"text/javascript"}}],"id":"8d818a2a-3aca-4f8a-9526-e32aa09a3b89","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/review/roles/baseline/project/proj0000","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while fetching user roles with baseline review permission via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","review","roles","baseline","project","proj0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8d818a2a-3aca-4f8a-9526-e32aa09a3b89"},{"name":"Create a Custom Single Line Text Field","event":[{"listen":"test","script":{"id":"87707af2-134a-428d-837d-9d811df77556","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Singleline_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Singleline_Id\", jsonData.Id);","pm.environment.set(\"Attribute_Singleline_Version\", jsonData.Version);","","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"dfa70ab5-e433-473a-9ce6-0f3497db1fb9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"SinlgeLine_Text\",\n  \"displayType\": \"TEXT\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Creates a custom single line text field.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Id/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - TEXT</li>\n<li>displayLines (Required) - no of display lines , for singlelinetext it is 1</li>\n<li>displaySize  (Required) - display size integer, for singlelinetext it is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"f8f1602e-fbf9-4b9c-b534-83784f68096a","name":"Create a Custom Single Line Text Field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestSingleLineTextBox\",\n    \"displayType\": \"TEXT\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:17:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"460"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=9997"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1020\",\n\t\"Name\": \"TestSingleLineTextBox\",\n\t\"DisplayType\": \"TEXT\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 3,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:11:46 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 05:11:46 +0530 IST\",\n\t\"Version\": 100,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"dfa70ab5-e433-473a-9ce6-0f3497db1fb9"},{"name":"Create a Custom Multi Line Text Field","event":[{"listen":"test","script":{"id":"5e964a84-a311-41df-bc39-9e664c2bc5f7","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Multiline_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Multiline_Id\", jsonData.Id);","pm.environment.set(\"Attribute_Multiline_Version\", jsonData.Version);","","","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"b681c3fc-fd82-4381-aa49-e4522b0e90ef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"MultiLine_Text\",\n  \"displayType\": \"TEXT\",\n  \"displayLines\": 5,\n  \"displaySize\": 5,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Creates a custom multi line text field.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Id/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - TEXT</li>\n<li>displayLines (Required) - no of display lines , for multilinetextbox it is &gt; 1</li>\n<li>displaySize  (Required) - display size integer, for multilinetextbox it is &gt; 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2d06038b-1fb8-4e26-a1f5-642eb2530deb","name":"Create a Custom Multi Line Text Field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestMultiLineTextBox\",\n    \"displayType\": \"TEXT\",\n    \"displayLines\": 5,\n    \"displaySize\": 5,\n    \"valueType\": \"String\",\n    \"isRequired\": false,\n    \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1021\",\n\t\"Name\": \"TestMultiLineTextBox\",\n\t\"DisplayType\": \"TEXT\",\n\t\"DisplaySize\": 5,\n\t\"DisplayLines\": 5,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": false,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 4,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:25:19 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 05:25:19 +0530 IST\",\n\t\"Version\": 100,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"b681c3fc-fd82-4381-aa49-e4522b0e90ef"},{"name":"Create a Custom Single-select Drop-down List","event":[{"listen":"test","script":{"id":"863b3bd9-a436-4bcd-aeb9-175b6889d2d4","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_DropDown_Name\", jsonData.Name);","pm.environment.set(\"Attribute_DropDown_Id\", jsonData.Id);","pm.environment.set(\"Attribute_DropDown_Version\",jsonData.Version);","","for ( var i = 0; i<2; i++){","    pm.environment.set(\"Attribute_DropDown_value\"+i+\"\", jsonData.FieldValues[i].Id);","}","","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"e97930ac-e278-483e-a2fa-399b06ba0e5f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Attribute1_1\",\n  \"displayType\": \"DROPDOWN\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false,\n  \"fieldValues\": [\n    {\n      \"value\": \"Att_value\"\n    },\n    {\n      \"value\": \"Att_value\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Creates a custom single-select drop-dpwn list. </p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Id/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - DROPDOWN</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required) - is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n<li>fieldValues (Required) - array of field values</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"cf13907f-4792-4fbb-b9e3-10a998c9ca22","name":"Create a Custom Single-select Drop-down List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestSingleSelect\",\n    \"displayType\": \"DROPDOWN\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false,\n    \"fieldValues\": [\n        {\n            \"value\": \"Test1\"\n        },\n        {\n            \"value\": \"Test3\"\n        },\n        {\n            \"value\": \"Test4\"\n        }\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1022\",\n\t\"Name\": \"TestSingleSelect\",\n\t\"DisplayType\": \"DROPDOWN\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 5,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:26:14 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 05:26:14 +0530 IST\",\n\t\"Version\": 100,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1080\",\n\t\t\t\"FieldId\": \"basefild1022\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Test1\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1081\",\n\t\t\t\"FieldId\": \"basefild1022\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Test3\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1082\",\n\t\t\t\"FieldId\": \"basefild1022\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Test4\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"e97930ac-e278-483e-a2fa-399b06ba0e5f"},{"name":"Create a Custom Multi-select Drop-down List","event":[{"listen":"test","script":{"id":"b3174da7-a267-4ae6-a935-fce9df409d4a","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Multiselect_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Multiselect_Id\", jsonData.Id);","pm.environment.set(\"Attribute_Multiselect_Version\",jsonData.Version);","","for ( var i = 0; i<3; i++){","    pm.environment.set(\"Attribute_Multiselect_value\"+i+\"\", jsonData.FieldValues[i].Id);","}","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"afc85950-f339-4421-b103-6530a8063e6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Attribute2_1\",\n  \"displayType\": \"MULTISELECT\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false,\n  \"fieldValues\": [\n    {\n      \"value\": \"checkbox1\"\n    },\n    {\n      \"value\": \"checkbox2\"\n    },\n    {\n      \"value\": \"checkbox3\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Creates a custom attribute multi select drop-down list.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Id/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - MULTISELECT</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n<li>fieldValues (Required) - array of field values</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"dd24ee74-250e-43af-905f-3796beee69b6","name":"Create a Custom Multi-select Drop-down List","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestMultiSelect\",\n    \"displayType\": \"MULTISELECT\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"fieldValues\": [\n        {\n            \"value\": \"MS1\"\n        },\n        {\n            \"value\": \"MS2\"\n        },\n        {\n            \"value\": \"MS3\"\n        },\n        {\n            \"value\": \"MS4\"\n        }\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1023\",\n\t\"Name\": \"TestMultiSelect\",\n\t\"DisplayType\": \"MULTISELECT\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": false,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 6,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:27:02 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 05:27:02 +0530 IST\",\n\t\"Version\": 100,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1083\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS1\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1084\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS2\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1085\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS3\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1086\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS4\",\n\t\t\t\"DisplayOrder\": 4,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"afc85950-f339-4421-b103-6530a8063e6f"},{"name":"Create a Custom Date Field","event":[{"listen":"test","script":{"id":"4132e75f-430d-457f-a715-042bf69a35d6","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Date_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Date_Id\", jsonData.Id);","pm.environment.set(\"Attribute_Date_Version\", jsonData.Version);","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"1b5a294a-7fc5-4fef-8b42-a03e1f36a41a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"DateField_1\",\n  \"displayType\": \"DATE\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Creates a custom date field.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Id/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - DATE</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"5157ff53-1f22-4d15-8eba-e0faf89ef640","name":"Create a Custom Date Field","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestDate\",\n    \"displayType\": \"DATE\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20"},"status":"Created","code":201,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1024\",\n\t\"Name\": \"TestDate\",\n\t\"DisplayType\": \"DATE\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 7,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:27:22 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 05:27:22 +0530 IST\",\n\t\"Version\": 100,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"1b5a294a-7fc5-4fef-8b42-a03e1f36a41a"},{"name":"Edit a Custom Single Line Text Field","event":[{"listen":"test","script":{"id":"c73dc66a-9a0c-4cfc-a6dd-155b1c5a4252","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Singleline_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Singleline_Version\", jsonData.Version);","","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"1d170eca-862f-49a0-8079-833b808c4eb4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Singleline_Version}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"SinlgeLine_Text_Updated\",\n  \"displayType\": \"TEXT\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{Attribute_Singleline_Id}}","description":"<p>Updates a custom single line text field.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Id/Path</code> (Required)\n<code>Attribute Id</code> (Required) - field Id</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - TEXT</li>\n<li>displayLines (Required) - no of display lines , for singlelinetext it is 1</li>\n<li>displaySize  (Required) - display size integer, for singlelinetext it is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{Attribute_Singleline_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"3075719d-8df4-4a86-9804-b95db938fa6f","name":"Edit a Custom Single Line Text Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Singleline_Version}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"EditSingleLineTextBox\",\n    \"displayType\": \"TEXT\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1025"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1025\",\n\t\"Name\": \"EditSingleLineTextBox\",\n\t\"DisplayType\": \"TEXT\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 8,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 06:49:24 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 06:49:38 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"1d170eca-862f-49a0-8079-833b808c4eb4"},{"name":"Edit a Custom Multi Line Text Field","event":[{"listen":"test","script":{"id":"509537fa-c6a1-47b2-9915-2714564232b2","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Multiline_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Multiline_Version\", jsonData.Version);","","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"91c098b3-4807-4506-855f-21f3179356fe","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Multiline_Version}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"MultiLine_Text_updated\",\n  \"displayType\": \"TEXT\",\n  \"displayLines\": 5,\n  \"displaySize\": 5,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{Attribute_Multiline_Id}}","description":"<p>Updates a custom multi line line text field.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Attribute Id</code> (Required) - field Id</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - TEXT</li>\n<li>displayLines (Required) - no of display lines , for multilinetextbox it is &gt; 1</li>\n<li>displaySize  (Required) - display size integer, for multilinetextbox it is &gt; 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{Attribute_Multiline_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"8201b02b-4747-4ef4-974a-3900db3e05de","name":"Edit a Custom Multi Line Text Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Multiline_Version}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestEditMultiLineTextBox\",\n    \"displayType\": \"TEXT\",\n    \"displayLines\": 5,\n    \"displaySize\": 5,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1021"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1021\",\n\t\"Name\": \"TestEditMultiLineTextBox\",\n\t\"DisplayType\": \"TEXT\",\n\t\"DisplaySize\": 5,\n\t\"DisplayLines\": 5,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 4,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:25:19 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 06:49:58 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"91c098b3-4807-4506-855f-21f3179356fe"},{"name":"Edit a Custom Single-select Drop-down List","event":[{"listen":"test","script":{"id":"2d1af6b9-9d63-4fda-92e7-cb888879f58e","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_DropDown_Name\", jsonData.Name);","pm.environment.set(\"Attribute_DropDown_Version\",jsonData.Version);","","for ( var i = 0; i<2; i++){","    pm.environment.set(\"Attribute_DropDown_value\"+i+\"\", jsonData.FieldValues[i].Id);","}","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"95902cc6-db4f-4d4f-9927-038328b5acca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_DropDown_Version}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Attribute1_updated\",\n  \"displayType\": \"DROPDOWN\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false,\n  \"fieldValues\": [\n    {\n      \"value\": \"Att_value_updated\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Att_value_updated\",\n      \"isDefaultValue\": false\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{Attribute_DropDown_Id}}","description":"<p>Updates a custom single-select drop-down list.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Attribute Id</code> (Required) - field Id</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - DROPDOWN</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required) - is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n<li>fieldValues (Required) - array of field values</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{Attribute_DropDown_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"0713b373-e50d-4221-bc7c-c14fe884fd44","name":"Edit a Custom Single-select Drop-down List","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_DropDown_Version}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestEditSingleSelect\",\n    \"displayType\": \"DROPDOWN\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false,\n    \"fieldValues\": [\n        {\n            \"id\": \"basefldv1080\",\n            \"value\": \"Test1\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"id\": \"basefldv1082\",\n            \"value\": \"Test4\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"value\": \"Test5\"\n        }\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1022"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1022\",\n\t\"Name\": \"TestEditSingleSelect\",\n\t\"DisplayType\": \"DROPDOWN\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 5,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:26:14 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 06:50:22 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1080\",\n\t\t\t\"FieldId\": \"basefild1022\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Test1\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1082\",\n\t\t\t\"FieldId\": \"basefild1022\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Test4\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1087\",\n\t\t\t\"FieldId\": \"basefild1022\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Test5\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"95902cc6-db4f-4d4f-9927-038328b5acca"},{"name":"Edit a Custom Multi-select Drop-down List","event":[{"listen":"test","script":{"id":"ff184a8f-8279-44f6-ae78-2847d6eff9e1","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Multiselect_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Multiselect_Version\",jsonData.Version);","","for ( var i = 0; i<3; i++){","    pm.environment.set(\"Attribute_Multiselect_value\"+i+\"\", jsonData.FieldValues[i].Id);","}","","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"7e61e26b-5b1e-4832-a022-232651ae47d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Multiselect_Version}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"Attribute2_1_updated\",\n  \"displayType\": \"MULTISELECT\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false,\n  \"fieldValues\": [\n    {\n      \"value\": \"checkbox1_updated\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"checkbox2_updated\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"checkbox3\",\n      \"isDefaultValue\": false\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{Attribute_Multiselect_Id}}","description":"<p>Updates a custom multi-select drop-down list.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Attribute Id</code> (Required) - Field Id</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - MULTISELECT</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n<li>fieldValues (Required) - array of field values</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{Attribute_Multiselect_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"d4354328-fc3a-4dca-b375-046d1ad69cdd","name":"Edit a Custom Multi-select Drop-down List","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Multiselect_Version}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestEditMultiSelect\",\n    \"displayType\": \"MULTISELECT\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": false,\n    \"isDisabled\": false,\n    \"fieldValues\": [\n        {\n            \"id\": \"basefldv1083\",\n            \"value\": \"MS1\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"id\": \"basefldv1084\",\n            \"value\": \"MS2\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"value\": \"MS9\"\n        },\n        {\n            \"value\": \"MS10\"\n        }\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1023"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1023\",\n\t\"Name\": \"TestEditMultiSelect\",\n\t\"DisplayType\": \"MULTISELECT\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": false,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 6,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:27:02 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 06:50:56 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1083\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS1\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1084\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS2\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1088\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS9\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1089\",\n\t\t\t\"FieldId\": \"basefild1023\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"MS10\",\n\t\t\t\"DisplayOrder\": 4,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"7e61e26b-5b1e-4832-a022-232651ae47d3"},{"name":"Edit a Custom Date Field","event":[{"listen":"test","script":{"id":"b08666c1-0e2b-491c-8bf1-c780fa7a2662","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Attribute_Date_Name\", jsonData.Name);","pm.environment.set(\"Attribute_Date_Version\",jsonData.Version);","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"f5894dde-22b7-46c0-88ca-15d1cbc93629","exec":[""],"type":"text/javascript"}}],"id":"8cee4017-ca6c-4941-8288-7e9b6b77b008","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Date_Version}}"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"DateField_updated\",\n  \"displayType\": \"DATE\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": false,\n  \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{Attribute_Date_Id}}","description":"<p>Updates a custom date field.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Attribute Id</code> (Required) - field Id</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - DATE</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required) - is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{Attribute_Date_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"be834b7e-3a24-4e38-8ffa-a9baccb8a6d0","name":"Edit a Custom Date Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{Attribute_Date_Version}}"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"TestEditDate\",\n    \"displayType\": \"DATE\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": false,\n    \"isDisabled\": false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1024"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1024\",\n\t\"Name\": \"TestEditDate\",\n\t\"DisplayType\": \"DATE\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": false,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 7,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:27:22 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 06:51:11 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"8cee4017-ca6c-4941-8288-7e9b6b77b008"},{"name":"Reorder Attributes","event":[{"listen":"test","script":{"id":"db37ab5e-bbd7-40f8-90fe-8605885288c9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","var att_drop_down = pm.environment.get(\"Attribute_DropDown_Name\");","var att_date = pm.environment.get(\"Attribute_Date_Name\");","var att_multiline = pm.environment.get(\"Attribute_Multiline_Name\");","var att_singleline = pm.environment.get(\"Attribute_Singleline_Name\");","var att_multiselect = pm.environment.get(\"Attribute_Multiselect_Name\");","","for(var i =0; i<7; i++){","    if(jsonData[i].Name == \"status\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 1');","    }","    if(jsonData[i].Name == \"category\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 2');","    }","    if(jsonData[i].Name == att_drop_down){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 3');","    }","    if(jsonData[i].Name == att_date){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 4');","    }","    if(jsonData[i].Name == att_multiline){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 5');","    }","    if(jsonData[i].Name == att_singleline){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 6');","    }","    if(jsonData[i].Name == att_multiselect){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 7');","    }","}",""],"type":"text/javascript"}}],"id":"fa5299aa-3cc1-4198-be02-fa370eda4d4a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"fields\": [\n    {\n      \"Name\": \"status\",\n      \"DisplayOrder\": 1\n    },\n    {\n      \"Name\": \"category\",\n      \"DisplayOrder\": 2\n    },\n    {\n      \"Name\": \"{{Attribute_DropDown_Name}}\",\n      \"DisplayOrder\": 3\n    },\n    {\n      \"Name\": \"{{Attribute_Date_Name}}\",\n      \"DisplayOrder\": 4\n    },\n    {\n      \"Name\": \"{{Attribute_Multiline_Name}}\",\n      \"DisplayOrder\": 5\n    },\n    {\n      \"Name\": \"{{Attribute_Singleline_Name}}\",\n      \"DisplayOrder\": 6\n    },\n    {\n      \"Name\": \"{{Attribute_Multiselect_Name}}\",\n      \"DisplayOrder\": 7\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}","description":"<p>Reorders both the system-defined and custom attributes</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"6570d95b-91cb-4d62-8a47-ce632d95ea5d","name":"Reorder Attributes","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"fields\": [\n    {\n      \"Name\": \"status\",\n      \"DisplayOrder\": 1\n    },\n    {\n      \"Name\": \"category\",\n      \"DisplayOrder\": 2\n    },\n    {\n      \"Name\": \"{{Attribute_DropDown_Name}}\",\n      \"DisplayOrder\": 3\n    },\n    {\n      \"Name\": \"{{Attribute_Date_Name}}\",\n      \"DisplayOrder\": 4\n    },\n    {\n      \"Name\": \"{{Attribute_Multiline_Name}}\",\n      \"DisplayOrder\": 5\n    },\n    {\n      \"Name\": \"{{Attribute_Singleline_Name}}\",\n      \"DisplayOrder\": 6\n    },\n    {\n      \"Name\": \"{{Attribute_Multiselect_Name}}\",\n      \"DisplayOrder\": 7\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:25:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"550"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Id\": \"basefild1142\",\n        \"Name\": \"status\",\n        \"DisplayType\": \"DROPDOWN\",\n        \"DisplaySize\": 1,\n        \"DisplayLines\": 1,\n        \"ValueType\": \"String\",\n        \"IsRequired\": true,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": false,\n        \"DisplayOrder\": 1,\n        \"DefaultTextValue\": \"test\",\n        \"CreatedById\": \"user1001\",\n        \"DateCreated\": \"2018-10-21 16:23:06 +0530 IST\",\n        \"LastModifiedById\": \"user1001\",\n        \"DateLastModified\": \"2018-10-21 16:23:06 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 100,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    },\n    {\n        \"Id\": \"basefild1143\",\n        \"Name\": \"category\",\n        \"DisplayType\": \"DROPDOWN\",\n        \"DisplaySize\": 1,\n        \"DisplayLines\": 1,\n        \"ValueType\": \"String\",\n        \"IsRequired\": true,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": false,\n        \"DisplayOrder\": 2,\n        \"DefaultTextValue\": \"test\",\n        \"CreatedById\": \"user1001\",\n        \"DateCreated\": \"2018-10-21 16:23:06 +0530 IST\",\n        \"LastModifiedById\": \"user1161\",\n        \"DateLastModified\": \"2018-10-21 16:54:51 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 101,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    },\n    {\n        \"Id\": \"basefild1146\",\n        \"Name\": \"Attribute1_updated_883\",\n        \"DisplayType\": \"DROPDOWN\",\n        \"DisplaySize\": 1,\n        \"DisplayLines\": 1,\n        \"ValueType\": \"String\",\n        \"IsRequired\": false,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": true,\n        \"DisplayOrder\": 3,\n        \"DefaultTextValue\": \"\",\n        \"CreatedById\": \"user1161\",\n        \"DateCreated\": \"2018-10-21 16:49:00 +0530 IST\",\n        \"LastModifiedById\": \"user1161\",\n        \"DateLastModified\": \"2018-10-21 16:54:17 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 101,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    },\n    {\n        \"Id\": \"basefild1148\",\n        \"Name\": \"DateField_updated_288\",\n        \"DisplayType\": \"DATE\",\n        \"DisplaySize\": 1,\n        \"DisplayLines\": 1,\n        \"ValueType\": \"String\",\n        \"IsRequired\": false,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": true,\n        \"DisplayOrder\": 4,\n        \"DefaultTextValue\": \"\",\n        \"CreatedById\": \"user1161\",\n        \"DateCreated\": \"2018-10-21 16:50:46 +0530 IST\",\n        \"LastModifiedById\": \"user1161\",\n        \"DateLastModified\": \"2018-10-21 16:54:33 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 101,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    },\n    {\n        \"Id\": \"basefild1145\",\n        \"Name\": \"MultiLine_Text_updated423\",\n        \"DisplayType\": \"TEXT\",\n        \"DisplaySize\": 5,\n        \"DisplayLines\": 5,\n        \"ValueType\": \"String\",\n        \"IsRequired\": false,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": true,\n        \"DisplayOrder\": 5,\n        \"DefaultTextValue\": \"\",\n        \"CreatedById\": \"user1161\",\n        \"DateCreated\": \"2018-10-21 16:48:21 +0530 IST\",\n        \"LastModifiedById\": \"user1161\",\n        \"DateLastModified\": \"2018-10-21 16:54:10 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 101,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    },\n    {\n        \"Id\": \"basefild1144\",\n        \"Name\": \"SinlgeLine_Text_Updated_763\",\n        \"DisplayType\": \"TEXT\",\n        \"DisplaySize\": 1,\n        \"DisplayLines\": 1,\n        \"ValueType\": \"String\",\n        \"IsRequired\": false,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": true,\n        \"DisplayOrder\": 6,\n        \"DefaultTextValue\": \"\",\n        \"CreatedById\": \"user1161\",\n        \"DateCreated\": \"2018-10-21 16:47:23 +0530 IST\",\n        \"LastModifiedById\": \"user1161\",\n        \"DateLastModified\": \"2018-10-21 16:52:13 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 101,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    },\n    {\n        \"Id\": \"basefild1147\",\n        \"Name\": \"Attribute2_169_updated\",\n        \"DisplayType\": \"MULTISELECT\",\n        \"DisplaySize\": 1,\n        \"DisplayLines\": 1,\n        \"ValueType\": \"String\",\n        \"IsRequired\": false,\n        \"IsDisabled\": false,\n        \"IsDeleted\": false,\n        \"IsUserDefined\": true,\n        \"DisplayOrder\": 7,\n        \"DefaultTextValue\": \"\",\n        \"CreatedById\": \"user1161\",\n        \"DateCreated\": \"2018-10-21 16:49:55 +0530 IST\",\n        \"LastModifiedById\": \"user1161\",\n        \"DateLastModified\": \"2018-10-21 16:54:25 +0530 IST\",\n        \"HelpText\": \"\",\n        \"Version\": 101,\n        \"ParentFieldId\": \"\",\n        \"ProjectId\": \"proj1088\"\n    }\n]"}],"_postman_id":"fa5299aa-3cc1-4198-be02-fa370eda4d4a"},{"name":"Delete a Custom Field","event":[{"listen":"test","script":{"id":"a6a3e4c8-4ae3-43a3-9af8-02067a8a91a9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string- Isdeleted : true\", function () {","    pm.expect(pm.response.text()).to.include('\"IsDeleted\": true');","});"],"type":"text/javascript"}}],"id":"c539a055-abd7-44ce-8bf0-4b8edd1df75d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{Multiline_Id}}","description":"<p>Deletes a custom field.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Attribute Id</code> (Required) - field Id</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{Multiline_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"c868c6ea-09ca-49b2-85b1-fcfa3665bb18","name":"Delete a Custom Field","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1020"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:26:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"269"},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1020\",\n\t\"Name\": \"$basefild1020$TestSingleLineTextBox\",\n\t\"DisplayType\": \"TEXT\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": true,\n\t\"IsUserDefined\": true,\n\t\"DisplayOrder\": 3,\n\t\"CreatedById\": \"user1003\",\n\t\"DateCreated\": \"2020-05-20 05:11:46 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 06:48:15 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\"\n}"}],"_postman_id":"c539a055-abd7-44ce-8bf0-4b8edd1df75d"}],"id":"cb3f76de-d1e0-40a6-ab86-5f033557ff79","description":"<p>Baseline Administrators use these APIs for managing attributes used in baselines.</p>\n","event":[{"listen":"prerequest","script":{"id":"b4734daf-5532-4741-9ae8-f374cc2ce210","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"0b3394ce-be0a-4f37-ad0a-128668d86c4c","type":"text/javascript","exec":[""]}}],"_postman_id":"cb3f76de-d1e0-40a6-ab86-5f033557ff79"},{"name":"Baseline Settings - Status and Workflow Management","item":[{"name":"Get Default Status Value","event":[{"listen":"test","script":{"id":"a8050778-a4c5-4947-af07-f105d4167448","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string - IsDefaultvalue : true\", function () {","    pm.expect(pm.response.text()).to.include('\"IsDefaultValue\": true');","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","pm.test('Schema is valid',function(){","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","    "],"type":"text/javascript"}}],"id":"f131b9b3-3e9f-4ecd-9b5d-b4f8fbb698ee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/{{status_field_Id}}/workflow/start-status","description":"<p>Gets the value of default system-defined field</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","{{status_field_Id}}","workflow","start-status"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f131b9b3-3e9f-4ecd-9b5d-b4f8fbb698ee"},{"name":"Get Default Status Value - Value Not Configured","event":[{"listen":"test","script":{"id":"18511ab9-3017-4e5b-8369-824108978c7f","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Body matches string - IsDefaultvalue : true\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Field Constant for the field is not configured\"');","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","pm.test('Schema is valid',function(){","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"Bad Request\");","});    "],"type":"text/javascript"}}],"id":"9aee72db-3432-4cef-a33e-ad4b52d6022a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/basefild0000/workflow/start-status","description":"<p>A \"400 Bad Request\" error is thrown, when trying to get the value of the default system-defined field, which is not configured yet</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","basefild0000","workflow","start-status"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"9aee72db-3432-4cef-a33e-ad4b52d6022a"},{"name":"Get Default Status Value by Unauthorized User","event":[{"listen":"test","script":{"id":"850c902f-a54f-44b2-9356-c7444548e76a","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});"],"type":"text/javascript"}}],"id":"8f36f553-bcba-4146-a1e5-5a21b30ae746","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/{{status_field_Id}}/workflow/start-status","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to get the value of default system-defined field</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","{{status_field_Id}}","workflow","start-status"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8f36f553-bcba-4146-a1e5-5a21b30ae746"},{"name":"Get the Values of a Custom Status Field","event":[{"listen":"test","script":{"id":"a7b21224-fd2e-4e50-b0d0-11aed5ccd0e4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var status_open_id= pm.environment.get(\"status_open_id\");","var status_open_Value = pm.environment.get(\"status_open_Value\");","","for(var i=0; i<7; i++){","    if(jsonData.FieldValues[i].Value == status_open_Value){","        pm.expect(pm.response.text()).to.include('\"Id\": \"'+status_open_id+'\"');","    }","}","pm.test(\"Body matches string\", function () {","            pm.expect(pm.response.text()).to.include('\"Id\": \"'+status_open_id+'\"');","});"],"type":"text/javascript"}}],"id":"774a7b58-f601-4a77-8776-d855fe9270c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{status_field_Id}}/values","description":"<p>Gets the values of a custom status field.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Status field Id</code> (Required)</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{status_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"903bed25-a029-4c61-9d9d-4e52c7d00525","name":"Get the Values of a Custom Status Field","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/status/values"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1003\",\n\t\"Name\": \"status\",\n\t\"DisplayType\": \"DROPDOWN\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": false,\n\t\"DisplayOrder\": 1,\n\t\"DefaultTextValue\": \"test\",\n\t\"CreatedById\": \"user1001\",\n\t\"DateCreated\": \"2019-08-21 11:15:23 +0530 IST\",\n\t\"LastModifiedById\": \"user1001\",\n\t\"DateLastModified\": \"2019-08-21 11:15:23 +0530 IST\",\n\t\"Version\": 100,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1013\",\n\t\t\t\"FieldId\": \"basefild1003\",\n\t\t\t\"IsDefaultValue\": true,\n\t\t\t\"Value\": \"Submitted\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1014\",\n\t\t\t\"FieldId\": \"basefild1003\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Approved\",\n\t\t\t\"MetastatusValue\": \"Approved\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1015\",\n\t\t\t\"FieldId\": \"basefild1003\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Rejected\",\n\t\t\t\"MetastatusValue\": \"Rejected\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"774a7b58-f601-4a77-8776-d855fe9270c0"},{"name":"Get the Values of a Custom Status Field Using Invalid Project ID","event":[{"listen":"test","script":{"id":"92350afb-73fb-4f0c-a13d-432036e8b8b8","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"ecf772e8-cefc-4226-ac05-f0e55425ce6c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/proj0000/{{status_field_Id}}/values","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while trying to get the details of custom statuses via REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","proj0000","{{status_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ecf772e8-cefc-4226-ac05-f0e55425ce6c"},{"name":"Get the Values of a Custom Status Field as an Unauthorized User","event":[{"listen":"test","script":{"id":"fcbb3bee-b8ed-44d6-a975-f1f4753c2aa0","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});"],"type":"text/javascript"}}],"id":"5b07ca2b-5e96-4cd4-8abd-fb708f2964b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{status_field_Id}}/values","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to get the custom status details via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{status_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5b07ca2b-5e96-4cd4-8abd-fb708f2964b4"},{"name":"Get the Values of a Category Field","event":[{"listen":"test","script":{"id":"0b4841ea-ac22-48a6-ad4e-d463eaf63a85","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var category_value_id= pm.environment.get(\"category_value_id\");","var category_value_name = pm.environment.get(\"category_value_name\");","","for(var i=0; i<5; i++){","    if(jsonData.FieldValues[i].Value == category_value_name){","        pm.expect(pm.response.text()).to.include('\"Id\": \"'+category_value_id+'\"');","    }","}","pm.test(\"Body matches string\", function () {","            pm.expect(pm.response.text()).to.include('\"Id\": \"'+category_value_id+'\"');","});"],"type":"text/javascript"}}],"id":"25a77c52-64fb-40a8-9d42-6596b06a98ac","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{category_field_Id}}/values","description":"<p>Gets the values of a Category type field. </p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>ProjectId/Path</code> (Required)</li>\n<li><code>Category field Id</code>  (Required)</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{category_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"42cd75f0-5192-4e01-a010-df3f73c74393","name":"Get the Values of a Category Field","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1004/values"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1004\",\n\t\"Name\": \"category\",\n\t\"DisplayType\": \"DROPDOWN\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": false,\n\t\"DisplayOrder\": 2,\n\t\"DefaultTextValue\": \"test\",\n\t\"CreatedById\": \"user1001\",\n\t\"DateCreated\": \"2019-08-21 11:15:23 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 18:31:28 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1016\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Delivery Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1017\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Deployment Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1018\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Release Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1019\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Integration Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 4,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv35476\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Product Baseline\",\n\t\t\t\"DisplayOrder\": 5,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"25a77c52-64fb-40a8-9d42-6596b06a98ac"},{"name":"Create a Custom Status Field Value","event":[{"listen":"test","script":{"id":"5f2d493b-016c-4ade-b749-72b698cb7edc","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"status_value_id\", jsonData.Id);","","var schema = {","       \"Id\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"c49bfe3e-5854-48c6-8817-c5d5d60b5ccd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"In Progress\",\n  \"metaStatus\": \"Open\",\n  \"displayOrder\": \"4\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{status_field_Id}}/values","description":"<p>Creates a custom status field value.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Status field Id</code> (Required)</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>isDefaultValue (Required)  - true/false</li>\n<li>value (Required) - status value</li>\n<li>metaStatus (Required) - value of the metastatus ( Open/Approved/Rejected)</li>\n<li>displayOrder(Required) - display order of the field value</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{status_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"cb5095b3-fe42-451c-ad28-9b264cdc6ffa","name":"Create a Custom Status Field Value","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"isDefaultValue\": false,\n    \"value\": \"In Progress\",\n    \"metaStatus\": \"Open\"\n}"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/status/values"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:33:37 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"89"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefldv35478\",\n\t\"FieldId\": \"basefild1003\",\n\t\"IsDefaultValue\": false,\n\t\"Value\": \"In Progress\",\n\t\"MetastatusId\": 1,\n\t\"DisplayOrder\": 4,\n\t\"IsDeleted\": false\n}"}],"_postman_id":"c49bfe3e-5854-48c6-8817-c5d5d60b5ccd"},{"name":"Create a Custom Status Field Value as an Unauthorized User","event":[{"listen":"test","script":{"id":"3310943c-74d6-4a17-b140-a965cb872e35","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string-Permission denied\", function () {","    pm.expect(pm.response.text()).to.include('\"You must be a baseline admin to perform this action\"');","});","pm.test(\"Status code name has string- Unauthorized\", function () {","    pm.response.to.have.status(\"Unauthorized\");","});"],"type":"text/javascript"}}],"id":"2f4fe34b-4671-425d-bcb0-d3c9a475c9fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"status_1\",\n  \"metaStatus\": \"Open\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{status_field_Id}}/values","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to create custom status field value via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{status_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"c79c54d3-3aee-404d-9cc5-ed88d522e16e","name":"Create Custom Status by Unauthorized User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"status_1\",\n  \"metaStatus\": \"Open\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{status_field_Id}}/values"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:32:11 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"You must be a baseline admin to perform this action\""}],"_postman_id":"2f4fe34b-4671-425d-bcb0-d3c9a475c9fd"},{"name":"Create a Custom Status Field Value Using an Invalid Project ID","event":[{"listen":"test","script":{"id":"bbcf59db-5b7c-485c-8ff7-d3f896e33411","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.test(\"Body matches string - Invalid project Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"d83a27f5-222d-41bf-95c6-1fded9708366","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"Category_value_1\",\n  \"metaStatus\": \"Open\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/proj0000/{{status_field_Id}}/values","description":"<p>A \"400 Bad Request\" error is thrown, when an invalid project id is used while creating the custom status field value via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","proj0000","{{status_field_Id}}","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"a2ee9699-fb60-4742-a951-a7457ec9f6fc","name":"Create Custom Status using Invalid Project ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"Category_value_1\",\n  \"metaStatus\": \"Open\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/proj0000/{{status_field_Id}}/values"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:31:56 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"88"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid project id/path\",\n    \"parameter\": \"proj0000\"\n}"}],"_postman_id":"d83a27f5-222d-41bf-95c6-1fded9708366"},{"name":"Edit a Custom Status Field Value","event":[{"listen":"test","script":{"id":"d1f367c5-3bcf-47f2-a8c3-86240c9d9543","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","       \"Id\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","","pm.environment.set(\"status_open_Value\", jsonData.Value);","pm.environment.set(\"status_open_id\", jsonData.Id);",""],"type":"text/javascript"}}],"id":"2c6b8b71-0c05-4c9d-a3b4-7beaec394b36","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"{{status_open_Value}}_updated\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{status_open_id}}","description":"<p>Updates a custom status field value.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Status field value Id</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>isDefaultValue (Required)  - true/false</li>\n<li>value (Required) - status value</li>\n<li>metaStatus (Required) (Cannot be edited, just retain the original value) - \"Rejected\",</li>\n<li>displayOrder(Required) - display order of the field value</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","{{status_open_id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"a064255c-1031-4809-a146-ccc4260de119","name":"Edit a Custom Status Field Value","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"isDefaultValue\": false,\n    \"value\": \"Not Approved\",\n    \"metaStatus\": \"Rejected\",\n    \"displayOrder\": 3\n}"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/fields/values/basefldv1015"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefldv35477\",\n\t\"FieldId\": \"basefild1003\",\n\t\"IsDefaultValue\": false,\n\t\"Value\": \"Not Approved\",\n\t\"MetastatusId\": 3,\n\t\"DisplayOrder\": 3,\n\t\"IsDeleted\": false\n}"}],"_postman_id":"2c6b8b71-0c05-4c9d-a3b4-7beaec394b36"},{"name":"Edit a Custom Status Field Value that was Deleted","event":[{"listen":"test","script":{"id":"fd3e916b-7402-491e-be7e-822091d146b3","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(400);","});","",""],"type":"text/javascript"}}],"id":"b0e08122-b3d2-426c-afc1-941f192afb24","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"isDefaultValue\": false,\n  \"value\": \"{{status_open_Value}}_updated1\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{status_open_id_deleted}}","description":"<p>A \"404 Not Found\" error is thrown when you try to edit a custom status field value that was deleted.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","{{status_open_id_deleted}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b0e08122-b3d2-426c-afc1-941f192afb24"},{"name":"Create a Default Value for a Status Field","event":[{"listen":"test","script":{"id":"54387ff3-aec2-42c8-9bca-6d390a079d71","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","var jsonData = JSON.parse(responseBody);","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Field attribute \\'Name\\' is not allowed to change after field creation.\"');","});"],"type":"text/javascript"}}],"id":"73ad0e35-166a-4996-ac56-627f9a6b0ac9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"100"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"category\",\n  \"displayType\": \"DROPDOWN\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": true,\n  \"isDisabled\": false,\n  \"fieldValues\": [\n    {\n      \"value\": \"Delivery Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Deployment Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Release Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Integration Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"NewCategory_Baseline{{ }}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{status_field_Id}}","description":"<p>A \"400 Bad Request\" error is thrown, when a REST API call tries to edit the default status field value.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{status_field_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"73ad0e35-166a-4996-ac56-627f9a6b0ac9"},{"name":"Delete a Custom Status Field Value","event":[{"listen":"test","script":{"id":"e2fa0224-1d8d-4349-92ca-7befaec9a9c8","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","var schema = {","       \"Id\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","","pm.test(\"Body matches string- IsDeleted to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"IsDeleted\": true');","});"],"type":"text/javascript"}}],"id":"7098f77e-258f-424d-b0d8-6f3fdcff943d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{status_value_id}}","description":"<p>Deletes a custom status field value. </p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Status Field Value Id</code> (Required)</p>\n<p>Note: You cannot delete the default status field value.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","{{status_value_id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"3329b218-5c79-42f8-8e82-862ed2a46d7d","name":"Delete a Custom Status Field Value","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/fields/values/basefldv1014"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:33:56 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"89"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefldv1014\",\n\t\"FieldId\": \"basefild1003\",\n\t\"IsDefaultValue\": false,\n\t\"Value\": \"Approved\",\n\t\"MetastatusId\": 2,\n\t\"DisplayOrder\": -1,\n\t\"IsDeleted\": true\n}"}],"_postman_id":"7098f77e-258f-424d-b0d8-6f3fdcff943d"},{"name":"Delete Category Field Value","event":[{"listen":"test","script":{"id":"60c42472-88e6-4328-a091-f85234b381c3","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","var schema = {","       \"Id\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","","pm.test(\"Body matches string- IsDeleted to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"IsDeleted\": true');","});"],"type":"text/javascript"}}],"id":"14343140-cafc-43af-bf0c-2e0c45cd0bb8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{category_value_id}}","description":"<p>Deletes the selected category field value</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","{{category_value_id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"ee4335a4-957b-427a-8fd5-b053f367e228","name":"Delete Category Field Value","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{category_value_id}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:34:12 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"144"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"Id\": \"basefldv1603\",\n    \"FieldId\": \"basefild1143\",\n    \"IsDefaultValue\": false,\n    \"Value\": \"Category_value_914\",\n    \"MetastatusId\": -1,\n    \"DisplayOrder\": -1,\n    \"IsDeleted\": true\n}"}],"_postman_id":"14343140-cafc-43af-bf0c-2e0c45cd0bb8"},{"name":"Delete Already Deleted Category Field Value","event":[{"listen":"test","script":{"id":"842897dc-ef58-4ace-9fdf-38ec84a96b33","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});",""],"type":"text/javascript"}}],"id":"1b340c46-eba3-4842-8bcf-dac48001306a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{category_value_id}}","description":"<p>A \"404 Not Found\" error is thrown, when a user tries to delete a category field value that was deleted earlier</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","{{category_value_id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2cccb856-f112-4ccb-a620-978d38a4434c","name":"Delete Already Deleted Category Field Value","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{category_value_id}}"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:34:33 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"89"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid field value \",\n    \"parameter\": \"basefldv1603\"\n}"}],"_postman_id":"1b340c46-eba3-4842-8bcf-dac48001306a"},{"name":"Delete Custom Status using Invalid Status ID","event":[{"listen":"test","script":{"id":"a291d666-87ee-4996-9c65-4dd47da66bfa","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});"],"type":"text/javascript"}}],"id":"37eb5afb-3e82-4af7-b86d-94465620ff42","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/basefldv0000","description":"<p>A \"404 Not Found\" error is thrown, when an invalid custom status id is used while trying to delete the custom status via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","basefldv0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"42d4d8e8-b204-47c0-bee9-54f30758d7d8","name":"Delete Custom Status using Invalid Status ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/basefldv0000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:34:51 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"89"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid field value \",\n    \"parameter\": \"basefldv0000\"\n}"}],"_postman_id":"37eb5afb-3e82-4af7-b86d-94465620ff42"},{"name":"Delete Custom Status by Unauthorized User","event":[{"listen":"test","script":{"id":"9fdc75b1-c1a5-4307-a3e3-aa53583401a8","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"You must be a baseline admin to perform this action\"');","});"],"type":"text/javascript"}}],"id":"19e0035c-4c6c-4433-9cf5-f5ecab40b3d2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{status_open_id}}","description":"<p>A \"401 Unauthorized\" error is throw, when an unauthorized user tries to delete custom status via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","values","{{status_open_id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"731b98b1-1680-40f4-9ec6-932efa9d00f1","name":"Delete Custom Status by Unauthorized User","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/values/{{status_open_id}}"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:35:14 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"You must be a baseline admin to perform this action\""}],"_postman_id":"19e0035c-4c6c-4433-9cf5-f5ecab40b3d2"},{"name":"Delete System Attribute - Not Possible","event":[{"listen":"test","script":{"id":"acab1960-cbba-48aa-b7ff-e1bbe92f4536","exec":["pm.test(\"Status code is 404 - NotFound\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string- Invalid customAttribute\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Custom Attribute/Field\"');","});","","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"Not Found\");","});"],"type":"text/javascript"}}],"id":"556c76c3-9919-4e7d-8e3e-2404c91eac56","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{category_field_Id}}","description":"<p>A \"404 Not Found\" error is thrown, when a user tries to delete the system-defined attribute via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{category_field_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"45a3ad48-d91d-45d3-93eb-dd387ad4ee38","name":"Delete System Attribute - Not Possible","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{category_field_Id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:27:00 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"99"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid Custom Attribute/Field\",\n    \"parameter\": \"basefild1143\"\n}"},{"id":"ee1ea798-4b6e-42af-bca3-75b6cefd636c","name":"Delete System Attribute - Not Possible","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{category_field_Id}}"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:27:00 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"99"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid Custom Attribute/Field\",\n    \"parameter\": \"basefild1143\"\n}"}],"_postman_id":"556c76c3-9919-4e7d-8e3e-2404c91eac56"},{"name":"Reorder Status Fields","event":[{"listen":"test","script":{"id":"a6d20ff9-73f7-421c-8fb2-6d3d50aa2b20","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","var schema = {","       \"Id\" : \"string\",","       \"FieldId\" : \"string\",","        \"IsDefaultValue\" : \"bool\",","        \"Value\" : \"string\",","        \"MetaStatus\" : \"string\",","        \"DisplayOrder\" : \"int\",","        \"IsDeleted\" : \"bool\"","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var status_open_Value = pm.environment.get(\"status_open_Value\");","var status_approved_Value = pm.environment.get(\"status_approved_Value\");","var status_rejected_Value = pm.environment.get(\"status_rejected_Value\");","","for(var i =0; i<7; i++){","    if(jsonData[i].Value == \"Accept\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 1');","    }","    if(jsonData[i].Value == \"Submitted\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 2');","    }","    if(jsonData[i].Value == \"Acknowledge\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 3');","    }","    if(jsonData[i].Value == \"Approve\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 4');","    }","    if(jsonData[i].Value == status_open_Value){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 5');","    }","    if(jsonData[i].Value == status_approved_Value){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 6');","    }","    if(jsonData[i].Value == \"Duplicate\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 7');","    }","    if(jsonData[i].Value == \"Reject\"){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 8');","    }","    if(jsonData[i].Value == status_rejected_Value){","        pm.expect(pm.response.text()).to.include('\"DisplayOrder\": 9');","    }","}",""],"type":"text/javascript"}}],"id":"735342ef-e6ce-406e-8d12-f781b233e699","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"fieldValues\": [\n    {\n      \"value\": \"Accept\",\n      \"displayOrder\": 1\n    },\n    {\n      \"value\": \"Submitted\",\n      \"displayOrder\": 2\n    },\n    {\n      \"value\": \"Acknowledge\",\n      \"displayOrder\": 3\n    },\n    {\n      \"value\": \"Approve\",\n      \"displayOrder\": 4\n    },\n    {\n      \"value\": \"{{status_open_Value}}\",\n      \"displayOrder\": 5\n    },\n    {\n      \"value\": \"{{status_approved_Value}}\",\n      \"displayOrder\": 6\n    },\n    {\n      \"value\": \"Duplicate\",\n      \"displayOrder\": 7\n    },\n    {\n      \"value\": \"Reject\",\n      \"displayOrder\": 8\n    },\n    {\n      \"value\": \"{{status_rejected_Value}}\",\n      \"displayOrder\": 9\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/status/values","description":"<p>Reorders the system-defined and custom status fields</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","status","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"5ef16bdb-c1c7-43da-b8db-46b2b73d0e60","name":"Reorder Status Fields","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"fieldValues\": [\n    {\n      \"value\": \"Accept\",\n      \"displayOrder\": 1\n    },\n    {\n      \"value\": \"Submitted\",\n      \"displayOrder\": 2\n    },\n    {\n      \"value\": \"Acknowledge\",\n      \"displayOrder\": 3\n    },\n    {\n      \"value\": \"Approve\",\n      \"displayOrder\": 4\n    },\n    {\n      \"value\": \"{{status_open_Value}}\",\n      \"displayOrder\": 5\n    },\n    {\n      \"value\": \"{{status_approved_Value}}\",\n      \"displayOrder\": 6\n    },\n    {\n      \"value\": \"Duplicate\",\n      \"displayOrder\": 7\n    },\n    {\n      \"value\": \"Reject\",\n      \"displayOrder\": 8\n    },\n    {\n      \"value\": \"{{status_rejected_Value}}\",\n      \"displayOrder\": 9\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/status/values"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:35:35 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"284"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Id\": \"basefldv1576\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"Accept\",\n        \"MetastatusId\": 2,\n        \"DisplayOrder\": 1,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1574\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": true,\n        \"Value\": \"Submitted\",\n        \"MetastatusId\": 1,\n        \"DisplayOrder\": 2,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1575\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"Acknowledge\",\n        \"MetastatusId\": 2,\n        \"DisplayOrder\": 3,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1577\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"Approve\",\n        \"MetastatusId\": 2,\n        \"DisplayOrder\": 4,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1605\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"status_139_updated_updated\",\n        \"MetastatusId\": 1,\n        \"DisplayOrder\": 5,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1601\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"status_654\",\n        \"MetastatusId\": 2,\n        \"DisplayOrder\": 6,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1578\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"Duplicate\",\n        \"MetastatusId\": 3,\n        \"DisplayOrder\": 7,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1579\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"Reject\",\n        \"MetastatusId\": 3,\n        \"DisplayOrder\": 8,\n        \"IsDeleted\": false\n    },\n    {\n        \"Id\": \"basefldv1602\",\n        \"FieldId\": \"basefild1142\",\n        \"IsDefaultValue\": false,\n        \"Value\": \"status_718\",\n        \"MetastatusId\": 3,\n        \"DisplayOrder\": 9,\n        \"IsDeleted\": false\n    }\n]"}],"_postman_id":"735342ef-e6ce-406e-8d12-f781b233e699"},{"name":"Reorder Status Fields using Invalid Project ID","event":[{"listen":"test","script":{"id":"f5b5dcf9-0a6d-46d5-a340-567011b06180","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Body matches string- Invalid project Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"8f3476ea-b5a6-46f6-92b7-8490631d9166","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"fieldValues\": [\n    {\n      \"value\": \"Accept\",\n      \"displayOrder\": 1\n    },\n    {\n      \"value\": \"Submitted\",\n      \"displayOrder\": 2\n    },\n    {\n      \"value\": \"Acknowledge\",\n      \"displayOrder\": 3\n    },\n    {\n      \"value\": \"Approve\",\n      \"displayOrder\": 4\n    },\n    {\n      \"value\": \"{{status_open_Value}}\",\n      \"displayOrder\": 5\n    },\n    {\n      \"value\": \"{{status_approved_Value}}\",\n      \"displayOrder\": 6\n    },\n    {\n      \"value\": \"Duplicate\",\n      \"displayOrder\": 7\n    },\n    {\n      \"value\": \"Reject\",\n      \"displayOrder\": 8\n    },\n    {\n      \"value\": \"{{status_rejected_Value}}\",\n      \"displayOrder\": 9\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/proj0000","description":"<p>A \"404 Not Found\" error is thrown, when an invalide project id is used while trying to reorder the system-defined and custom status fields</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","proj0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2c2bb0c8-e297-4840-94eb-f2540729a65c","name":"Reorder Status Fields using Invalid Project ID","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"fieldValues\": [\n    {\n      \"value\": \"Accept\",\n      \"displayOrder\": 1\n    },\n    {\n      \"value\": \"Submitted\",\n      \"displayOrder\": 2\n    },\n    {\n      \"value\": \"Acknowledge\",\n      \"displayOrder\": 3\n    },\n    {\n      \"value\": \"Approve\",\n      \"displayOrder\": 4\n    },\n    {\n      \"value\": \"{{status_open_Value}}\",\n      \"displayOrder\": 5\n    },\n    {\n      \"value\": \"{{status_approved_Value}}\",\n      \"displayOrder\": 6\n    },\n    {\n      \"value\": \"Duplicate\",\n      \"displayOrder\": 7\n    },\n    {\n      \"value\": \"Reject\",\n      \"displayOrder\": 8\n    },\n    {\n      \"value\": \"{{status_rejected_Value}}\",\n      \"displayOrder\": 9\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/proj0000"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:35:58 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"88"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid project id/path\",\n    \"parameter\": \"proj0000\"\n}"}],"_postman_id":"8f3476ea-b5a6-46f6-92b7-8490631d9166"},{"name":"Reorder Status Fields by Unauthorized User","event":[{"listen":"test","script":{"id":"155d31d1-9e2c-4fd0-9f19-9bc5b4fa4f97","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string- Permission denied\", function () {","    pm.expect(pm.response.text()).to.include('\"You must be a baseline admin to perform this action\"');","});","","pm.test(\"Status code name has string - Unauthorized\", function () {","    pm.response.to.have.status(\"Unauthorized\");","});"],"type":"text/javascript"}}],"id":"5fa6dadf-0ef8-4152-91df-3c05437444c0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"fieldValues\": [\n    {\n      \"value\": \"Accept\",\n      \"displayOrder\": 1\n    },\n    {\n      \"value\": \"Submitted\",\n      \"displayOrder\": 2\n    },\n    {\n      \"value\": \"Acknowledge\",\n      \"displayOrder\": 3\n    },\n    {\n      \"value\": \"Approve\",\n      \"displayOrder\": 4\n    },\n    {\n      \"value\": \"{{status_open_Value}}\",\n      \"displayOrder\": 5\n    },\n    {\n      \"value\": \"{{status_approved_Value}}\",\n      \"displayOrder\": 6\n    },\n    {\n      \"value\": \"Duplicate\",\n      \"displayOrder\": 7\n    },\n    {\n      \"value\": \"Reject\",\n      \"displayOrder\": 8\n    },\n    {\n      \"value\": \"{{status_rejected_Value}}\",\n      \"displayOrder\": 9\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/status/values","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to reorder status fields via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","status","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"dccc6cd4-7c2c-44a2-adbf-337024d9fa2b","name":"Reorder Status Fields by Unauthorized User","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"fieldValues\": [\n    {\n      \"value\": \"Accept\",\n      \"displayOrder\": 1\n    },\n    {\n      \"value\": \"Submitted\",\n      \"displayOrder\": 2\n    },\n    {\n      \"value\": \"Acknowledge\",\n      \"displayOrder\": 3\n    },\n    {\n      \"value\": \"Approve\",\n      \"displayOrder\": 4\n    },\n    {\n      \"value\": \"{{status_open_Value}}\",\n      \"displayOrder\": 5\n    },\n    {\n      \"value\": \"{{status_approved_Value}}\",\n      \"displayOrder\": 6\n    },\n    {\n      \"value\": \"Duplicate\",\n      \"displayOrder\": 7\n    },\n    {\n      \"value\": \"Reject\",\n      \"displayOrder\": 8\n    },\n    {\n      \"value\": \"{{status_rejected_Value}}\",\n      \"displayOrder\": 9\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/status/values"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:36:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"53"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"You must be a baseline admin to perform this action\""}],"_postman_id":"5fa6dadf-0ef8-4152-91df-3c05437444c0"},{"name":"Add Role for Status Transition","event":[{"listen":"test","script":{"id":"c778d263-5dde-4f26-a36a-ca8d4f67ef63","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"int\",","        \"RoleId\" : \"string\",","        \"RoleName\" : \"string\",","        \"FieldName\" : \"string\",","        \"FromStatus\" : \"string\",","        \"ToStatus\" : \"string\",","        \"projectId\" : \"string\",","","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var status_op = pm.environment.get(\"status_open_Value\");","","","pm.test(\"Body matches string- From status\", function () {","    pm.expect(pm.response.text()).to.include('\"FromStatus\": \"'+status_op+'\"');","});","","pm.test(\"Body matches string - To status\", function () {","    pm.expect(pm.response.text()).to.include('\"ToStatus\": \"Accept\"');","});"],"type":"text/javascript"}}],"id":"52bc31d4-8072-430e-b199-e4857d0a12b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_open_id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}","description":"<p>Adds role for selected status transition</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"52bc31d4-8072-430e-b199-e4857d0a12b3"},{"name":"Add Role for Status Transition - Role ID without Review Permission","event":[{"listen":"test","script":{"id":"caf42b96-d500-4e8a-a60c-b0b54583e86c","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","var jsonData = JSON.parse(responseBody);","","pm.test(\"Body matches string - enter a valid role\", function () {","    pm.expect(pm.response.text()).to.include('\"Please enter a valid role who has reviewer permission\"');","});"],"type":"text/javascript"}}],"id":"b232f881-8a72-4ed5-9e3d-8a2bb9be4b27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_open_id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/role0000","description":"<p>A \"400 Bad Request\" error is thrown, when a role ID without baseline review permission is used while adding user role for selected status transition via the REST call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","role0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b232f881-8a72-4ed5-9e3d-8a2bb9be4b27"},{"name":"Add Role for Status Transition - Invalid Project ID","event":[{"listen":"test","script":{"id":"f46a44cf-cc10-4b5c-b3a4-fb9e92933cae","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string - Invalid ProjectId\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"2cae3f9c-dfd0-4356-a334-0c5311beed10","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_open_id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/proj0000/role/{{roleId}}","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while adding user role for status transition via the REST call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","proj0000","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"2cae3f9c-dfd0-4356-a334-0c5311beed10"},{"name":"Add Role for Status Transition by Unauthorized User","event":[{"listen":"test","script":{"id":"ca67d2e8-b316-4585-b80a-ceea49001179","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string - Unauthorized\", function () {","    pm.expect(pm.response.text()).to.include('\"You must be a baseline admin to perform this action\"');","});","","pm.test(\"Status code name has string- Unauthorized\", function () {","    pm.response.to.have.status(\"Unauthorized\");","});"],"type":"text/javascript"}}],"id":"3f487dd8-78f2-458c-8703-2adc436ce630","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_open_id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to add a user role for selecte status transition via the REST call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3f487dd8-78f2-458c-8703-2adc436ce630"},{"name":"Add Role for Status Transition using Invalid From Status","event":[{"listen":"test","script":{"id":"5ff820ed-77a5-4839-9a96-fdc17975bd31","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Body matches string - Enter valid status from open status type\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Please Enter a valid From Status from Open Status\"');","});","","pm.test(\"Status code name has string- Bad Request\", function () {","    pm.response.to.have.status(\"Bad Request\");","});"],"type":"text/javascript"}}],"id":"103cf7fc-2b68-4b5c-b177-39ccfad0a479","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_approve_Id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}","description":"<p>A \"400 Bad Request\" error is thrown, when an invalid from status (not of \"open\" meta status) is provided while adding a user role for status transition via the REST call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"103cf7fc-2b68-4b5c-b177-39ccfad0a479"},{"name":"Create Role for Baseline Admin Users","event":[{"listen":"test","script":{"id":"0fa670e4-8474-4038-adf1-d779caa40fb8","exec":["pm.test(\"Status code is 201 - Role is created successfully.\", function () {","    pm.response.to.have.status(201);","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});","","pm.test(\"Response time is less than 5000ms\", function () {","    pm.expect(pm.response.responseTime).to.be.below(5000);","});","","var schema = {","  \"roleType\": \"Global\",","  \"projectId\": \"string\",","  \"title\": \"string\",","  \"description\": \"string\",","  \"preventInheritance\": true,","  \"requestable\": true,","  \"autoGrant\": true","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"baselineAdminRoleId\", jsonData.id);","postman.setEnvironmentVariable(\"baselineAdminRoleName\", jsonData.title);"],"type":"text/javascript"}}],"id":"f6c4e323-d8ff-442d-b64f-58120454ad27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"roleType\": \"Project\",\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"title\": \"BaselineReviewerRole\",\r\n  \"description\": \"Role created via REST API\",\r\n  \"preventInheritance\": true,\r\n  \"requestable\": true,\r\n  \"autoGrant\": true\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles","description":"<p>Creates user role for users with Baseline Admin permission</p>\n","urlObject":{"path":["ctfrest","foundation","v1","projects","{{projectId}}","roles"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"27e8914f-cdfe-4cfd-9774-e45ab24c16f2","name":"Create Role for Baseline Admin Users","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"roleType\": \"Project\",\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"title\": \"BaselineReviewerRole\",\r\n  \"description\": \"Role created via REST API\",\r\n  \"preventInheritance\": true,\r\n  \"requestable\": true,\r\n  \"autoGrant\": true\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:37:20 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"539"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"role\",\n    \"id\": \"role1476\",\n    \"title\": \"BaselineReviewerRole882\",\n    \"description\": \"Role created via REST API\",\n    \"createdInProjectId\": \"proj1088\",\n    \"status\": \"A\",\n    \"roleType\": \"Project\",\n    \"preventInheritance\": true,\n    \"requestable\": true,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"},{"id":"66e1c4f9-6775-49ec-b160-6376edd94880","name":"Create Role for Baseline Admin Users","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{AdminToken}}"}],"body":{"mode":"raw","raw":"{\r\n  \"roleType\": \"Project\",\r\n  \"projectId\": \"{{projectId}}\",\r\n  \"title\": \"BaselineReviewerRole\",\r\n  \"description\": \"Role created via REST API\",\r\n  \"preventInheritance\": true,\r\n  \"requestable\": true,\r\n  \"autoGrant\": true\r\n}"},"url":"{{HostName}}/ctfrest/foundation/v1/projects/{{projectId}}/roles"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:37:20 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Location","value":"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"539"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"ETag","value":"\"100\""},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"_type\": \"role\",\n    \"id\": \"role1476\",\n    \"title\": \"BaselineReviewerRole882\",\n    \"description\": \"Role created via REST API\",\n    \"createdInProjectId\": \"proj1088\",\n    \"status\": \"A\",\n    \"roleType\": \"Project\",\n    \"preventInheritance\": true,\n    \"requestable\": true,\n    \"_links\": {\n        \"self\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476\"\n        },\n        \"update\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476\",\n            \"method\": \"PATCH\"\n        },\n        \"delete\": {\n            \"href\": \"https://teamforge.collab.net/ctfrest/foundation/v1/roles/role1476\",\n            \"method\": \"DELETE\"\n        }\n    }\n}"}],"_postman_id":"f6c4e323-d8ff-442d-b64f-58120454ad27"},{"name":"Assign Baseline Admin Permission for User Role","event":[{"listen":"test","script":{"id":"8e5573c3-5c5d-46c8-81e7-3e09a1aff7a0","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"542fbe88-99bf-49ac-b0bc-7582570682e5","exec":[""],"type":"text/javascript"}}],"id":"3db87a3a-252c-415e-8e22-8f9eaf170b43","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{baselineAdminRoleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_admin</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp","description":"<p>Assigns baseline admin permission for the user role</p>\n","urlObject":{"path":["ce-soap60","services","RbacApp"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"c0055099-1149-40a9-b859-6d8911a0e0a5","name":"Assign Baseline Admin Permission for User Role","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"text/xml"},{"key":"SoapAction","value":"Required"}],"body":{"mode":"raw","raw":"<soapenv:Envelope xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:ser=\"http://schema.open.collab.net/sfee50/soap60/service\">\r\n   <soapenv:Header/>\r\n   <soapenv:Body>\r\n      <ser:addCluster soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\">\r\n         <sessionId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{AdminTokenSoap}}</sessionId>\r\n         <roleId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">{{baselineAdminRoleId}}</roleId>\r\n         <operationCluster xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\">baseline_admin</operationCluster>\r\n                <folderId xsi:type=\"xsd:string\" xs:type=\"type:string\" xmlns:xs=\"http://www.w3.org/2000/XMLSchema-instance\"></folderId>\r\n      </ser:addCluster>\r\n   </soapenv:Body>\r\n</soapenv:Envelope>"},"url":"{{HostName}}/ce-soap60/services/RbacApp"},"status":"OK","code":200,"_postman_previewlanguage":"xml","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:38:15 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Content-Type","value":"text/xml;charset=utf-8"},{"key":"CtfUserName","value":"admin"},{"key":"Cache-Control","value":"max-age=0"},{"key":"Expires","value":"Sun, 21 Oct 2018 11:38:14 GMT"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"233"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<soapenv:Envelope xmlns:soapenv=\"http://schemas.xmlsoap.org/soap/envelope/\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">\n    <soapenv:Body>\n        <ns1:addClusterResponse soapenv:encodingStyle=\"http://schemas.xmlsoap.org/soap/encoding/\" xmlns:ns1=\"http://schema.open.collab.net/sfee50/soap60/service\"/>\n    </soapenv:Body>\n</soapenv:Envelope>"}],"_postman_id":"3db87a3a-252c-415e-8e22-8f9eaf170b43"},{"name":"Add Role for Status Transition - Role with only Baseline Admin Permission","event":[{"listen":"test","script":{"id":"51deede3-4312-4948-a14a-78d2c5b3d7c8","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"int\",","        \"RoleId\" : \"string\",","        \"RoleName\" : \"string\",","        \"FieldName\" : \"string\",","        \"FromStatus\" : \"string\",","        \"ToStatus\" : \"string\",","        \"projectId\" : \"string\",","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","pm.test(\"Body matches string - Need to enter valid role who has reviewer permission\", function () {","    pm.expect(pm.response.text()).to.include('\"Please enter a valid role who has reviewer permission\"');","});"],"type":"text/javascript"}}],"id":"0acea71b-511a-43e8-9a85-7a44d98dacc3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_open_id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{baselineAdminRoleId}}","description":"<p>A \"400 Bad Request\" error is thrown, when trying to add a role with only baseline admin permission and without baseline review permission for status transition</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{baselineAdminRoleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0acea71b-511a-43e8-9a85-7a44d98dacc3"},{"name":"Update Status Transition","event":[{"listen":"test","script":{"id":"56af20e8-86e4-4a96-9d39-cbe2d42fbcef","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"int\",","        \"RoleId\" : \"string\",","        \"RoleName\" : \"string\",","        \"FieldName\" : \"string\",","        \"FromStatus\" : \"string\",","        \"ToStatus\" : \"string\",","        \"projectId\" : \"string\",","","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var status_submitted_Id = pm.environment.get(\"status_submitted_Id\");","","","pm.test(\"Body matches string- From status\", function () {","    pm.expect(pm.response.text()).to.include('\"FromStatus\": \"'+status_submitted_Id+'\"');","});","","pm.test(\"Body matches string - To status\", function () {","    pm.expect(pm.response.text()).to.include('\"ToStatus\": \"Accept\"');","});"],"type":"text/javascript"}}],"id":"6791b19e-3d26-4569-9edc-536baee649a9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_submitted_Id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}","description":"<p>Updates existing status transition to selected from and/or to statuses</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"6791b19e-3d26-4569-9edc-536baee649a9"},{"name":"Get Roles with Status Transition Workflow","event":[{"listen":"test","script":{"id":"8b13246f-ea4c-49dd-80ef-6da70a9e4278","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"int\",","        \"RoleId\" : \"string\",","        \"RoleName\" : \"string\",","        \"FieldName\" : \"string\",","        \"FromStatus\" : \"string\",","        \"ToStatus\" : \"string\",","        \"projectId\" : \"string\",","","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var roleId = pm.environment.get(\"roleId\");","","","pm.test(\"Body matches string- From status\", function () {","    pm.expect(pm.response.text()).to.include('\"RoleId\": \"'+roleId+'\"');","});"],"type":"text/javascript"}}],"id":"5db08ce1-0f4a-4b8f-b74e-92efe800e5e1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}","description":"<p>Gets user roles for which status transition workflow has been added</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5db08ce1-0f4a-4b8f-b74e-92efe800e5e1"},{"name":"Get Roles with Status Transition Workflow using Invalid Project ID","event":[{"listen":"test","script":{"id":"e33f047a-cf3a-4fcb-b906-c2cd7b0ba8da","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","        \"Id\" : \"int\",","        \"RoleId\" : \"string\",","        \"RoleName\" : \"string\",","        \"FieldName\" : \"string\",","        \"FromStatus\" : \"string\",","        \"ToStatus\" : \"string\",","        \"projectId\" : \"string\",","","};","","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","pm.test(\"Body matches string- Invalid project Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"ae8a72ef-6c5c-4112-a353-c5eae91a2ae3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/proj0000","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while trying to get roles with status transition workflow via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","proj0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ae8a72ef-6c5c-4112-a353-c5eae91a2ae3"},{"name":"Get Roles with Status Transition Workflow by Unauthorized User","event":[{"listen":"test","script":{"id":"9bea95bb-3ccd-4ae7-8808-88788449f93e","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string- Invalid project Id\", function () {","    pm.expect(pm.response.text()).to.include('\"You must be a baseline admin to perform this action\"');","});"],"type":"text/javascript"}}],"id":"4b9883d8-ff3e-42be-aa1e-e7680505a29f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to get user roles with status transition workflow via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"4b9883d8-ff3e-42be-aa1e-e7680505a29f"},{"name":"Get Baseline Workflow Transition for Current User","event":[{"listen":"test","script":{"id":"c051aafc-1331-4fb2-af0b-4038dd87e3f2","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"0011fe90-974d-454e-9538-810e5d9ff36a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId1}}/transitions/myself","description":"<p>Gets the baseline status workflow transition for the user who has currently logged in</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{baseId1}}","transitions","myself"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"0011fe90-974d-454e-9538-810e5d9ff36a"},{"name":"Update Baseline Custom Fields","event":[{"listen":"test","script":{"id":"8acfd69e-5d38-4b46-936a-d7b87162acdb","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","","pm.test(\"Body matches string - Baseline updated successfully\", function () {","    pm.expect(pm.response.text()).to.include('\"Baseline Updated successfully.\"');","});"],"type":"text/javascript"}}],"id":"ccbc8d96-d77b-4aba-9303-0cd55a23c412","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{baseline2_version}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId2}}","description":"<p>Updates only the custom fields in the baseline.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{baseId2}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"69636456-0c08-4c9d-85bb-1e278439944b","name":"Update Baseline Custom Fields","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{baseline2_version}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId2}}"},"status":"Not Modified","code":304,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:40:53 GMT"},{"key":"Server","value":"Apache"},{"key":"Connection","value":"Keep-Alive"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Vary","value":"User-Agent"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ccbc8d96-d77b-4aba-9303-0cd55a23c412"},{"name":"Update Baseline Custom Fields with Status Transition","event":[{"listen":"test","script":{"id":"fef1629d-c80c-4829-ab1e-c10bd0c83a03","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string - Baseline updated successfully\", function () {","    pm.expect(pm.response.text()).to.include('\"Baseline Updated successfully.\"');","});"],"type":"text/javascript"}}],"id":"b7064cb1-f570-465b-a7d6-055528f4e652","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{baseline2_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_accept_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ],\n  \"comment\": \"Setting the status from submitted to accept based on status transistion. \"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId2}}","description":"<p>Updates only the custom fields in the baseline and changes to the next status defined in the status transition workflow</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{baseId2}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2ea60069-b2ac-47c2-b825-a3799fbb1ce8","name":"Update Baseline Custom Fields with Status Transition","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{baseline2_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_accept_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ],\n  \"comment\": \"Setting the status from submitted to accept based on status transistion. \"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId2}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:41:25 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"32"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"Baseline Updated successfully.\""}],"_postman_id":"b7064cb1-f570-465b-a7d6-055528f4e652"},{"name":"Update Baseline Fields to Unavailable Status","event":[{"listen":"test","script":{"id":"56655f55-f6ec-4cbe-b571-53f9c1702bc9","exec":["pm.test(\"Status code is 403\", function () {","    pm.response.to.have.status(403);","});","","","var status_submitted_Id = pm.environment.get(\"status_submitted_Id\");","","pm.test(\"Body matches string - Baseline updated successfully\", function () {","    pm.expect(pm.response.text()).to.include('\"User do not have permission to update baseline status as '+status_submitted_Id+'\"');","});"],"type":"text/javascript"}}],"id":"771fe875-9eb8-4273-ae44-8ad796245733","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{baseline2_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId2}}","description":"<p>Update the baseline with baseline flex fields and status which is not configured in workflow.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{baseId2}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"b728d911-6855-45d3-8e95-71360f2a09ea","name":"Update Baseline Fields to Unavailable Status","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{baseline2_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{baseId2}}"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:47:38 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"71"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"User do not have permission to update baseline status as basefldv1574\""}],"_postman_id":"771fe875-9eb8-4273-ae44-8ad796245733"},{"name":"Update Baseline Field with Invalid Baseline ID","event":[{"listen":"test","script":{"id":"8533bfef-63f3-45a7-b5c3-fdd5146f1505","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string - Invalid Vaseline Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});"],"type":"text/javascript"}}],"id":"98ec187d-9808-4725-81ee-9c3b5c793b20","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{baseline2_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/base0000","description":"<p>When updating the custom fields in the baseline via the REST API call, a \"404 Not Found\"  error is thrown, when an invalid baseline id is used</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","base0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2d247803-524c-4d01-bcb0-55602b4ccbea","name":"Update Baseline Field with Invalid Baseline ID","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{baseline2_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"comparebaseline_updated\",\n  \"description\": \"comparing the baseline features with another filter conditions_updated\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}\",\n      \"values\": [\n        \"2018-10-28\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}\",\n      \"values\": [\n        \"Multiline \\nText \\nBox\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}\",\n      \"values\": [\n        \"Single line text entry\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/base0000"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:48:30 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"84"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Invalid Baseline Id\",\n    \"parameter\": \"base0000\"\n}"}],"_postman_id":"98ec187d-9808-4725-81ee-9c3b5c793b20"},{"name":"Update Comments","event":[{"listen":"test","script":{"id":"bcb1c167-9426-4da2-846a-4d21077971c6","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string - comment saved successfully\", function () {","    pm.expect(pm.response.text()).to.include('\"Comment saved successfully\"');","});"],"type":"text/javascript"}}],"id":"79d8a8b8-b169-42fa-bb82-5840dd0914b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Comment updated in baseline via REST API\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId={{baseId2}}","description":"<p>Updates the comments in respective baseline using baseline ID in URL.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","comment"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"}],"variable":[]}},"response":[{"id":"c69e1f5e-a540-4bd6-bf24-34cf05154ad9","name":"Update Comments","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Comment updated in baseline via REST API\"\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId={{baseId2}}","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","comment"],"query":[{"key":"objectId","value":"{{baseId2}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:48:59 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"28"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"Comment saved successfully\""}],"_postman_id":"79d8a8b8-b169-42fa-bb82-5840dd0914b9"},{"name":"Get Comments Count","event":[{"listen":"test","script":{"id":"247fd6cb-36b5-4589-b29d-4b8f64d6d660","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string - total count\", function () {","    pm.expect(pm.response.text()).to.include('\"totalCount\": 5');","});"],"type":"text/javascript"}}],"id":"298458e5-0a98-4fc6-9af6-4c5925a24844","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId={{baseId2}}&preference=all&offset=0&limit=10","description":"<p>Gets the count of comments in a baseline using baseline ID.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"},{"key":"preference","value":"all"},{"key":"offset","value":"0"},{"key":"limit","value":"10"}],"variable":[]}},"response":[],"_postman_id":"298458e5-0a98-4fc6-9af6-4c5925a24844"},{"name":"Create Baseline with Custom Fields","event":[{"listen":"test","script":{"id":"875d43d2-5f6b-4f5e-83f7-41530a7a5407","exec":[""],"type":"text/javascript"}}],"id":"48d9ecba-5999-4e05-833a-ba2f1302ce3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithFlexFields\",\n  \"description\": \"Creating the baseline with newly created flex fields\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_value_id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-3\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Multiline text box\\ntesting with\\nmultiple lines. \"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Single line validation\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": true,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"DocumentApp2181\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": true,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\",\n          \"{{ChildPF_Id}}\",\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": true,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}","description":"<p>Create baseline using newly created \"attributes\", \"status\" values of baseline.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"d7e6544b-3bfc-4c38-9131-175177d03f47","name":"Create Baseline with Custom Fields","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithFlexFields\",\n  \"description\": \"Creating the baseline with newly created flex fields\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_value_id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-3\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Multiline text box\\ntesting with\\nmultiple lines. \"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Single line validation\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": true,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"DocumentApp2181\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": true,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\",\n          \"{{ChildPF_Id}}\",\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": true,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:49:37 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"924"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1272\",\n    \"title\": \"BaselineWithFlexFields_944\",\n    \"description\": \"Creating the baseline with newly created flex fields\",\n    \"status\": \"Submitted\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Implicit\",\n    \"category\": \"Category_value_914\",\n    \"projectId\": \"proj1088\",\n    \"createdBy\": \"apiUser997\",\n    \"modifiedBy\": \"apiUser997\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"10/21/2018\",\n    \"dateModified\": \"10/21/2018\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        }\n    },\n    \"bDefReferenceId\": 572\n}"}],"_postman_id":"48d9ecba-5999-4e05-833a-ba2f1302ce3b"},{"name":"Create Baseline with Custom Fields using Invalid Field Value","event":[{"listen":"test","script":{"id":"a3c6292f-ec04-4011-8094-efa3adcc44f1","exec":[" ","pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});"],"type":"text/javascript"}}],"id":"0b954302-311b-489d-8406-b2e8b2f912b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithFlexFields\",\n  \"description\": \"Creating the baseline with newly created flex fields\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_value_id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-3\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Multiline text box\\ntesting with\\nmultiple lines. \"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Single line validation\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": true,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"DocumentApp2181\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": true,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\",\n          \"{{ChildPF_Id}}\",\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": true,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}","description":"<p>Inability to create baseline using newly created \"attributes\", \"status\" values of baseline with invalid filter conditions.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"8874aac9-437d-48b8-9f2f-3a0f5fbdd696","name":"Create Baseline with Custom Fields using Invalid Field Value","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithFlexFields\",\n  \"description\": \"Creating the baseline with newly created flex fields\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_value_id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-3\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Multiline text box\\ntesting with\\nmultiple lines. \"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Single line validation\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": true,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"DocumentApp2181\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": true,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\",\n          \"{{ChildPF_Id}}\",\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": true,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:50:10 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"920"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1273\",\n    \"title\": \"BaselineWithFlexFields\",\n    \"description\": \"Creating the baseline with newly created flex fields\",\n    \"status\": \"Submitted\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Implicit\",\n    \"category\": \"Category_value_914\",\n    \"projectId\": \"proj1088\",\n    \"createdBy\": \"apiUser997\",\n    \"modifiedBy\": \"apiUser997\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"10/21/2018\",\n    \"dateModified\": \"10/21/2018\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        }\n    },\n    \"bDefReferenceId\": 573\n}"}],"_postman_id":"0b954302-311b-489d-8406-b2e8b2f912b4"},{"name":"Create Baseline with Custom Fields by Unauthorized User","event":[{"listen":"test","script":{"id":"4eba6855-bfc9-450b-955a-c895104c0966","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","pm.test(\"Body matches string - Permission denied\", function () {","    pm.expect(pm.response.text()).to.include('\"You must have \\'createBaseline\\' permission to perform this action\"');","});","","pm.test(\"Status code name has string- Unauthorized\", function () {","    pm.response.to.have.status(\"Unauthorized\");","});"],"type":"text/javascript"}}],"id":"ce021f1e-c529-4ce0-8192-36f77fc7b66d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithFlexFields\",\n  \"description\": \"Creating the baseline with newly created flex fields\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_value_id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-3\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Multiline text box\\ntesting with\\nmultiple lines. \"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Single line validation\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": true,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"DocumentApp2181\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": true,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\",\n          \"{{ChildPF_Id}}\",\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": true,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}","description":"<p>An unauthorized user cannot create baseline using newly created \"attributes\", \"status\" values of baseline via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"5bed22ca-8c93-49a8-87b1-4464c1534159","name":"Create Baseline with Custom Fields by Unauthorized User","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithFlexFields\",\n  \"description\": \"Creating the baseline with newly created flex fields\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_value_id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-3\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Multiline text box\\ntesting with\\nmultiple lines. \"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Single line validation\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": true,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"DocumentApp2181\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": true,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\",\n          \"{{ChildPF_Id}}\",\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": true,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": true,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:50:42 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"66"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"You must have 'createBaseline' permission to perform this action\""}],"_postman_id":"ce021f1e-c529-4ce0-8192-36f77fc7b66d"},{"name":"Delete Status Transition using Role ID","event":[{"listen":"test","script":{"id":"b51ae77e-0412-49ba-9716-360cd82c2fdd","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"7a3f9930-e446-481d-bcf0-e196bf8cd50a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}","description":"<p>Delete the status transition of baseline using role Id.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"ab5c2b03-d15c-41da-965b-2e8520418e3b","name":"Delete Status Transition using Role ID","originalRequest":{"method":"DELETE","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":""},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Sun, 21 Oct 2018 11:51:48 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"4"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"null"}],"_postman_id":"7a3f9930-e446-481d-bcf0-e196bf8cd50a"},{"name":"Get Meta Status","event":[{"listen":"test","script":{"id":"a399ddc9-77ba-4cb4-90a7-65e459a63f62","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string -Open\", function () {","    pm.expect(pm.response.text()).to.include('\"Value\": \"Open\"');","});","","pm.test(\"Body matches string -Open\", function () {","    pm.expect(pm.response.text()).to.include('\"Value\": \"Approved\"');","});","","pm.test(\"Body matches string -Open\", function () {","    pm.expect(pm.response.text()).to.include('\"Value\": \"Rejected\"');","});",""],"type":"text/javascript"}}],"id":"b5693ae7-d43d-421f-972c-c2e10d27303c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/metastatus/values","description":"<p>Gets the meta statuses</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","metastatus","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b5693ae7-d43d-421f-972c-c2e10d27303c"},{"name":"Get Meta Status by Unauthorized User","event":[{"listen":"test","script":{"id":"ed7a5ffd-17c7-4edf-9fed-39e5382f1819","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});"],"type":"text/javascript"}}],"id":"d6439f9a-3c9a-4c81-a421-adf91628af99","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/metastatus/values","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to get the meta statuses via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","metastatus","values"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d6439f9a-3c9a-4c81-a421-adf91628af99"},{"name":"Update Baseline Status Transition","event":[{"listen":"test","script":{"id":"860d508f-221f-4775-a640-4563617b097f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","pm.test(\"Body matches string- From status\", function () {","    pm.expect(pm.response.text()).to.include('\"FromStatus\": \"Submitted\"');","});","","pm.test(\"Body matches string - To status\", function () {","    pm.expect(pm.response.text()).to.include('\"ToStatus\": \"Accept\"');","});"],"type":"text/javascript"}}],"id":"f5fc2658-bb20-40e3-889a-a58f77bbf5bf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"transitions\": [\n    {\n      \"fromStatus\": \"{{status_submitted_Id}}\",\n      \"toStatus\": \"{{status_accept_Id}}\"\n    },\n    {\n      \"fromStatus\": \"{{status_submitted_Id}}\",\n      \"toStatus\": \"{{status_acknowledge_Id}}\"\n    },\n    {\n      \"fromStatus\": \"{{status_submitted_Id}}\",\n      \"toStatus\": \"{{status_approve_Id}}\"\n    }\n\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/transitions/by-project/{{projectId}}/role/{{roleId}}","description":"<p>Update the status transistion by changing the \"From Status\" to \"To Status\"</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","transitions","by-project","{{projectId}}","role","{{roleId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f5fc2658-bb20-40e3-889a-a58f77bbf5bf"},{"name":"Update the System Attribute - Category Field","event":[{"listen":"test","script":{"id":"d6f1637d-8681-4990-abdb-958ab411df99","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"category_newfield_Id\", jsonData.FieldValues[4].Id);","pm.environment.set(\"category_newfield_Value\", jsonData.FieldValues[4].Value);","pm.environment.set(\"category_field_version\", jsonData.Version);","","","var schema = {","  \"Id\": \"string\",","  \"Name\": \"string\",","  \"DisplayType\": \"string\",","  \"DisplaySize\": \"int\",","  \"DisplayLines\": \"int\",","  \"DisplayOrder\": \"int\",","  \"ValueType\": \"string\",","  \"IsRequired\": \"boolean\",","  \"IsDisabled\": \"boolean\",","  \"Version\": \"int\",","  \"FieldValues\": [","    \"string\"","  ]","};","","var jsonData = JSON.parse(responseBody);","pm.test(\"Validating the Schema\",function(){","   pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});","","var contentTypeHeaderExists = responseHeaders.hasOwnProperty(\"Content-Type\");"," ","tests[\"Has Content-Type\"] = contentTypeHeaderExists;"," ","if (contentTypeHeaderExists) {","    tests[\"Content-Type is application/json\"] = ","      responseHeaders[\"Content-Type\"].has(\"application/json\");","}","","pm.test(\"Content-Type is present\", function () {","    pm.response.to.have.header(\"Content-Type\");","});"],"type":"text/javascript"}}],"id":"efca3849-7c47-40f3-9ade-e7e5a420fa7d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{category_field_version}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"name\": \"category\",\n  \"displayType\": \"DROPDOWN\",\n  \"displayLines\": 1,\n  \"displaySize\": 1,\n  \"valueType\": \"String\",\n  \"isRequired\": true,\n  \"isDisabled\": false,\n  \"fieldValues\": [\n    {\n      \"value\": \"Delivery Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Deployment Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Release Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"Integration Baseline\",\n      \"isDefaultValue\": false\n    },\n    {\n      \"value\": \"NewCategory_Baseline\"\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/{{category_field_Id}}","description":"<p>Updates the system attribute category field.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>Attribute Id</code> (Required) - category field Id</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>name (Required) -  Name of the field</li>\n<li>displayType (Required) - MULTISELECT</li>\n<li>displayLines (Required) - no of display lines , value is 1</li>\n<li>displaySize  (Required) - display size integer, value is 1</li>\n<li>valueType (Required) - STRING</li>\n<li>isRequired (Required)- is required field ?</li>\n<li>isDisabled (Required) - is field disabled ?</li>\n<li>fieldValues (Required) - array of field values</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","{{category_field_Id}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"fb18f3b0-08a4-4b3a-ba8f-9428eea1b761","name":"Update the System Attribute - Category Field","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{category_field_version}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"name\": \"category\",\n    \"displayType\": \"DROPDOWN\",\n    \"displayLines\": 1,\n    \"displaySize\": 1,\n    \"valueType\": \"String\",\n    \"isRequired\": true,\n    \"isDisabled\": false,\n    \"fieldValues\": [\n        {\n            \"id\": \"basefldv1016\",\n            \"value\": \"Delivery Baseline\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"id\": \"basefldv1017\",\n            \"value\": \"Deployment Baseline\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"id\": \"basefldv1018\",\n            \"value\": \"Release Baseline\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"id\": \"basefldv1019\",\n            \"value\": \"Integration Baseline\",\n            \"isDefaultValue\": false\n        },\n        {\n            \"value\": \"Product Baseline\"\n        }\n    ]\n}"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/fields/by-project/projects.collabnet_agile_baseline_20/basefild1004"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"Id\": \"basefild1004\",\n\t\"Name\": \"category\",\n\t\"DisplayType\": \"DROPDOWN\",\n\t\"DisplaySize\": 1,\n\t\"DisplayLines\": 1,\n\t\"ValueType\": \"String\",\n\t\"IsRequired\": true,\n\t\"IsDisabled\": false,\n\t\"IsDeleted\": false,\n\t\"IsUserDefined\": false,\n\t\"DisplayOrder\": 2,\n\t\"DefaultTextValue\": \"test\",\n\t\"CreatedById\": \"user1001\",\n\t\"DateCreated\": \"2019-08-21 11:15:23 +0530 IST\",\n\t\"LastModifiedById\": \"user1003\",\n\t\"DateLastModified\": \"2020-05-20 18:31:28 +0530 IST\",\n\t\"Version\": 101,\n\t\"ProjectId\": \"proj1008\",\n\t\"FieldValues\": [\n\t\t{\n\t\t\t\"Id\": \"basefldv1020\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Project Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": -2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1016\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Delivery Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 1,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1017\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Deployment Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 2,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1018\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Release Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 3,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv1019\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Integration Baseline\",\n\t\t\t\"MetastatusValue\": \"Open\",\n\t\t\t\"DisplayOrder\": 4,\n\t\t\t\"IsDeleted\": false\n\t\t},\n\t\t{\n\t\t\t\"Id\": \"basefldv35476\",\n\t\t\t\"FieldId\": \"basefild1004\",\n\t\t\t\"IsDefaultValue\": false,\n\t\t\t\"Value\": \"Product Baseline\",\n\t\t\t\"DisplayOrder\": 5,\n\t\t\t\"IsDeleted\": false\n\t\t}\n\t]\n}"}],"_postman_id":"efca3849-7c47-40f3-9ade-e7e5a420fa7d"}],"id":"12ed44c0-107e-45ab-a2bb-a071ec25ee8e","description":"<p>Baseline Administrators use these APIs for managing statuses and workflow status transitions.</p>\n","event":[{"listen":"prerequest","script":{"id":"10efda80-bed9-48ad-b2ec-e41ac2e9646e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"1449e4d9-81ff-42a1-87c7-f40359ae2de1","type":"text/javascript","exec":[""]}}],"_postman_id":"12ed44c0-107e-45ab-a2bb-a071ec25ee8e"},{"name":"Baseline Settings - Field Inclusions","item":[{"name":"Update Meta Field for Tracker","event":[{"listen":"test","script":{"id":"b29958a5-6c83-4d28-8abb-b8fce31ab47d","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"No Content\");","});"],"type":"text/javascript"}}],"id":"49db17bf-67e7-4def-9dcb-4131e7e2b331","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"artifactId\",\n    \"name\": \"\",\n    \"displayOrder\": 1\n  },\n  {\n    \"id\": \"title\",\n    \"name\": \"\",\n    \"displayOrder\": 2\n  },\n  {\n    \"id\": \"{{Status_ID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 3\n  },\n  {\n    \"id\": \"{{priority_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 4\n  },\n  {\n    \"id\": \"{{team_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 5\n  },\n  {\n    \"id\": \"{{Category_ID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 6\n  },\n  {\n    \"id\": \"{{TextFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 7\n  },\n  {\n    \"id\": \"{{PF_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 8\n  },\n  {\n    \"id\": \"{{reportedInRel_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 9\n  },\n  {\n    \"id\": \"{{TkrSSFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 10\n  }\n]"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/manifest/by-folder/{{TrackerID}}","description":"<p>Updates the meta field information of Tracker using Tracker id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","manifest","by-folder","{{TrackerID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"e7764037-cbb3-481c-b928-6e95d57bad5f","name":"Get Meta Field for Tracker","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"artifactId\",\n    \"name\": \"\",\n    \"displayOrder\": 1\n  },\n  {\n    \"id\": \"title\",\n    \"name\": \"\",\n    \"displayOrder\": 2\n  },\n  {\n    \"id\": \"{{Status_ID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 3\n  },\n  {\n    \"id\": \"{{priority_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 4\n  },\n  {\n    \"id\": \"{{team_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 5\n  },\n  {\n    \"id\": \"{{Category_ID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 6\n  },\n  {\n    \"id\": \"{{TextFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 7\n  },\n  {\n    \"id\": \"{{PF_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 8\n  },\n  {\n    \"id\": \"{{reportedInRel_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 9\n  },\n  {\n    \"id\": \"{{TkrSSFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 10\n  }\n]"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/manifest/by-folder/{{TrackerID}}"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""},{"id":"fae45a3f-f209-4dec-a7f4-53487286cdd4","name":"Get Meta Field for Tracker","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"artifactId\",\n    \"name\": \"\",\n    \"displayOrder\": 1\n  },\n  {\n    \"id\": \"title\",\n    \"name\": \"\",\n    \"displayOrder\": 2\n  },\n  {\n    \"id\": \"{{Status_ID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 3\n  },\n  {\n    \"id\": \"{{priority_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 4\n  },\n  {\n    \"id\": \"{{team_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 5\n  },\n  {\n    \"id\": \"{{Category_ID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 6\n  },\n  {\n    \"id\": \"{{TextFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 7\n  },\n  {\n    \"id\": \"{{PF_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 8\n  },\n  {\n    \"id\": \"{{reportedInRel_fildID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 9\n  },\n  {\n    \"id\": \"{{TkrSSFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 10\n  }\n]"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/manifest/by-folder/{{TrackerID}}"},"status":"No Content","code":204,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 19 Oct 2018 06:20:42 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Set-Cookie","value":"JSESSIONID=1risBqrJ6YIUfKeX63G_4ChuAvALTfTPBzfipvcH.tf; path=/ctfrest; secure; HttpOnly"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=9998"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"49db17bf-67e7-4def-9dcb-4131e7e2b331"},{"name":"Update Meta Field for Document","event":[{"listen":"test","script":{"id":"01f8e175-0534-4ce7-b9b4-e021dc1da735","exec":["pm.test(\"Status code is 204\", function () {","    pm.response.to.have.status(204);","});","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"No Content\");","});"],"type":"text/javascript"}}],"id":"48e8135d-a8f4-4eb7-bcd1-abda14f5e300","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"[\n  {\n    \"id\": \"documentId\",\n    \"name\": \"\",\n    \"displayOrder\": 1\n  },\n  {\n    \"id\": \"title\",\n    \"name\": \"\",\n    \"displayOrder\": 2\n  },\n  {\n    \"id\": \"{{doc_status_Id}}\",\n    \"name\": \"\",\n    \"displayOrder\": 3\n  },\n  {\n    \"id\": \"version\",\n    \"name\": \"\",\n    \"displayOrder\": 4\n  },\n  {\n    \"id\": \"{{DocTxtFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 5\n  },\n  {\n    \"id\": \"{{DocMultiSelectFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 6\n  },\n  {\n    \"id\": \"{{DocUserFldID}}\",\n    \"name\": \"\",\n    \"displayOrder\": 7\n  }\n]"},"url":"{{HostName}}/ctfrest/baseline/v1/router/fields/by-project/{{projectId}}/manifest/by-folder/{{DocRootFolderId}}","description":"<p>Updates the meta field information of document using Document root folder Id.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","fields","by-project","{{projectId}}","manifest","by-folder","{{DocRootFolderId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"48e8135d-a8f4-4eb7-bcd1-abda14f5e300"}],"id":"c1ffc66b-59c5-43f6-9e10-c93eeab21767","description":"<p>Baseline Administrators use these APIs for managing Tracker and Document fields that will be used as part of baseline.</p>\n","event":[{"listen":"prerequest","script":{"id":"1fbb7917-83cb-4122-9ae6-77eadd62d66a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"9a1e99be-5247-49b5-a0d7-3d9e262c2440","type":"text/javascript","exec":[""]}}],"_postman_id":"c1ffc66b-59c5-43f6-9e10-c93eeab21767"},{"name":"Baseline Settings - Project Baseline","item":[{"name":"Get Project Baseline Definition - Not Created","event":[{"listen":"test","script":{"id":"180cb086-3b2b-44da-bd39-698dbc2e1869","exec":["pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Project baseline definition doesn\\'t exists for the given project\",');","});","","pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});"],"type":"text/javascript"}}],"id":"02c5983a-0736-49ba-9678-e4459f7e149f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project","description":"<p>A \"404 Not Found\" error is thrown, while trying to get the project baseline definition via the REST API call even though it is not created yet</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"73ce6b4a-9d37-4cf1-8428-9a746d0a936a","name":"GetProjectBaselineDefintions_NEG Copy","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Wed, 24 Oct 2018 07:06:50 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"129"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Project baseline definition doesn't exists for the given project\",\n    \"parameter\": \"proj1089\"\n}"}],"_postman_id":"02c5983a-0736-49ba-9678-e4459f7e149f"},{"name":"Create Project Baseline Definition","event":[{"listen":"test","script":{"id":"a6e7da1b-aea8-4e73-ba14-c5f43d5ecd98","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Project_Baseline_def_version\", jsonData.version);",""],"type":"text/javascript"}}],"id":"413598f1-947e-4909-95c9-f5b5b6327b27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{Project_Baseline_def_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Creating Project Baseline Definition\",\n  \"description\": \"Project baseline definition created in the project\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [\n        \"{{ChildDocFolderId}}\"\n      ],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [\n        \"{{SubChildPF_Id}}\"\n      ],\n      \"pfTree\": {}\n    },\n    \"frs\": {\n      \"releaseIds\": [\n        \"{{ReleaseID1}}\"\n      ]\n    },\n    \"scms\": [],\n    \"binaries\": []\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project","description":"<p>Creates a project baseline definition in a project using project ID</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"413598f1-947e-4909-95c9-f5b5b6327b27"},{"name":"Create Project Baseline Definition using Invalid Project ID","event":[{"listen":"test","script":{"id":"6e8136aa-fbe1-4890-be4c-813d7b5c1b1e","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string- Invalid Project Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"442baf55-59ca-40bc-b212-5672403004b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{Project_Baseline_def_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Creating Project Baseline Definition\",\n  \"description\": \"Project baseline definition created in the project\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [\n        \"{{ChildDocFolderId}}\"\n      ],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [\n        \"{{SubChildPF_Id}}\"\n      ],\n      \"pfTree\": {}\n    },\n    \"frs\": {\n      \"releaseIds\": [\n        \"{{ReleaseID2}}\"\n      ]\n    },\n    \"scms\": [],\n    \"binaries\": []\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/proj0000/project","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while creating a project baseline definition via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","proj0000","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"442baf55-59ca-40bc-b212-5672403004b3"},{"name":"Create Project Baseline Definition - Version Mismatch","event":[{"listen":"test","script":{"id":"9b52b996-25bc-49ce-9476-e529002c8501","exec":["pm.test(\"Status code is 409\", function () {","    pm.response.to.have.status(409);","});","","pm.test(\"Body matches string- Version mismatch\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Version mismatch\"');","});"],"type":"text/javascript"}}],"id":"5edd01cd-03f0-41b1-be0c-9efc23802ebd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"000"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Creating Project Baseline Definition\",\n  \"description\": \"Project baseline definition created in the project\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [\n        \"{{ChildDocFolderId}}\"\n      ],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [\n        \"{{SubChildPF_Id}}\"\n      ],\n      \"pfTree\": {}\n    },\n    \"frs\": {\n      \"releaseIds\": [\n        \"{{ReleaseID2}}\"\n      ]\n    },\n    \"scms\": [],\n    \"binaries\": []\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project","description":"<p>A \"409 Conflict\" error is thrown, when an invalid version is used while trying to create project baseline definition via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"5edd01cd-03f0-41b1-be0c-9efc23802ebd"},{"name":"Create Project Baseline Definition by Unauthorized User","event":[{"listen":"test","script":{"id":"06b257e3-bff7-4e12-a897-062b3eed51e1","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});",""],"type":"text/javascript"}}],"id":"d30d5020-dc77-47f1-92ec-8f98d3b035f0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"},{"key":"If-Match","type":"text","value":"{{Project_Baseline_def_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Creating Project Baseline Definition\",\n  \"description\": \"Project baseline definition created in the project\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [\n        \"{{ChildDocFolderId}}\"\n      ],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [\n        \"{{SubChildPF_Id}}\"\n      ],\n      \"pfTree\": {}\n    },\n    \"frs\": {\n      \"releaseIds\": [\n        \"{{ReleaseID2}}\"\n      ]\n    },\n    \"scms\": [],\n    \"binaries\": []\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project","description":"<p>A \"401 Unauthorized\" error is thrown, when an unauthorized user tries to create project baseline definition.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"d30d5020-dc77-47f1-92ec-8f98d3b035f0"},{"name":"Get Project Baseline Defintion","event":[{"listen":"test","script":{"id":"d1cb3007-826e-4b6e-add7-3dc9285c9675","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});"],"type":"text/javascript"}}],"id":"f587d595-8a66-44f0-964d-180f8e192d02","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project","description":"<p>Gets the project baseline definition information for a given project id</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f587d595-8a66-44f0-964d-180f8e192d02"},{"name":"Create Project Baseline in Current Project","event":[{"listen":"test","script":{"id":"5c0cfad8-4919-4c3d-9672-7c7bf0470849","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"ProjectBaseline_ID\", jsonData.id);","pm.environment.set(\"ProjectBaseline_version\", jsonData.version);"],"type":"text/javascript"}}],"id":"5021de6f-3352-48e0-a8ec-4a387184e976","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject\",\n  \"description\": \"Baseline with current project using project definition\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"singlelinetext\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_1}}\",\n          \"filters\": {}\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {},\n        \"docTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": null\n    }\n  }\n}\n  "},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/project","description":"<p>Creates project baseline in current project using the project baseline definition</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"17203f8a-df85-4ee4-bd28-bc8ecc0af7f3","name":"Create Project Baseline in Current Project","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject\",\n  \"description\": \"Baseline with current project using project definition\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"singlelinetext\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_1}}\",\n          \"filters\": {}\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {},\n        \"docTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": null\n    }\n  }\n}\n  "},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/project"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Oct 2018 03:21:40 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"926"},{"key":"Set-Cookie","value":"JSESSIONID=DYMDdbLwt-xiQtp1uoD7mO9K6cV7UJBzcetlolyj.tf; path=/ctfrest; secure; HttpOnly"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1429\",\n    \"title\": \"BaselineWithCurrentProject647\",\n    \"description\": \"Baseline with current project using project definition\",\n    \"status\": \"Submitted\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Project\",\n    \"category\": \"Project Baseline\",\n    \"projectId\": \"proj1110\",\n    \"createdBy\": \"apiUser800\",\n    \"modifiedBy\": \"apiUser800\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"10/26/2018\",\n    \"dateModified\": \"10/26/2018\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        }\n    },\n    \"bDefReferenceId\": 895\n}"}],"_postman_id":"5021de6f-3352-48e0-a8ec-4a387184e976"},{"name":"Create Project Baseline in Current Project without Create Project Baseline Permission","event":[{"listen":"test","script":{"id":"04c8bf4f-c28f-4b34-b4f8-28e426f0c75f","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"You must have \\'createProjectBaseline\\' permission to perform this action\"');","});"],"type":"text/javascript"}}],"id":"007087b8-4a90-4c1a-949e-c8883b197ebb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineCurrentProjectddfgdfgf\",\n  \"description\": \"tesitn fdg\",\n  \"status\": \"basefldv1224\",\n  \"category\": \"\",\n  \"flexFields\": [\n    {\n      \"id\": \"basefild1060\",\n      \"values\": [\n        \"basefldv1240\"\n      ]\n    },\n    {\n      \"id\": \"basefild1059\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"basefild1063\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\"\n      ]\n    },\n    {\n      \"id\": \"basefild1062\",\n      \"values\": [\n        \"singlelinetext\"\n      ]\n    },\n    {\n      \"id\": \"basefild1061\",\n      \"values\": [\n        \"basefldv1243\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"tracker1328\",\n          \"filters\": {}\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"docf1247\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {},\n        \"docTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"plan1255\"\n        ],\n        \"pfTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"rel1488\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": null\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/project","description":"<p>A \"401 Unauthorized\" error is thrown, when trying to create project baseline without \"Create Project Baseline\" permission via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"e1f98bda-7c88-4ca3-97b1-234ffe4ca19e","name":"Create Project Baseline in Current Project without Create Project Baseline Permission","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineCurrentProjectddfgdfgf\",\n  \"description\": \"tesitn fdg\",\n  \"status\": \"basefldv1224\",\n  \"category\": \"\",\n  \"flexFields\": [\n    {\n      \"id\": \"basefild1060\",\n      \"values\": [\n        \"basefldv1240\"\n      ]\n    },\n    {\n      \"id\": \"basefild1059\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"basefild1063\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\"\n      ]\n    },\n    {\n      \"id\": \"basefild1062\",\n      \"values\": [\n        \"singlelinetext\"\n      ]\n    },\n    {\n      \"id\": \"basefild1061\",\n      \"values\": [\n        \"basefldv1243\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"tracker1328\",\n          \"filters\": {}\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"docf1247\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {},\n        \"docTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"plan1255\"\n        ],\n        \"pfTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"rel1488\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": null\n    }\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/project"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Oct 2018 03:22:21 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"73"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"You must have 'createProjectBaseline' permission to perform this action\""}],"_postman_id":"007087b8-4a90-4c1a-949e-c8883b197ebb"},{"name":"Get Project Baselines","event":[{"listen":"test","script":{"id":"c22fc3ba-3874-4e1d-8603-205b85e2643a","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"ProjectBaseline_version\", jsonData.version);"],"type":"text/javascript"}}],"id":"147593a4-f597-408b-b8f9-236dd9ef36eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{ProjectBaseline_ID}}","description":"<p>Gets the details of project baselines in current project using the project baseline definition</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{ProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"147593a4-f597-408b-b8f9-236dd9ef36eb"},{"name":"Edit Project Baseline","event":[{"listen":"test","script":{"id":"4d4ab805-67fa-43eb-a208-96b4f3f08633","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"Baseline Updated successfully.\"');","});"],"type":"text/javascript"}}],"id":"8b560fd0-dce8-472e-a1e8-f4ee3c08e582","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","value":"{{ProjectBaseline_version}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject_updated\",\n  \"description\": \"Baseline with current project using project definition_update\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}_updated\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}_Updated\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\\nupdated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}_updated\",\n      \"values\": [\n        \"singlelinetext_updated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value0}}\",\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{ProjectBaseline_ID}}","description":"<p>Edit project baseline with category \"Project Baseline\"</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{ProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"8b560fd0-dce8-472e-a1e8-f4ee3c08e582"},{"name":"Edit Project Baseline with Category","event":[{"listen":"test","script":{"id":"92e3df1b-f939-458c-8aff-805f020bb2e0","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"Baseline Updated successfully.\"');","});"],"type":"text/javascript"}}],"id":"3046da64-8b50-4c4a-b986-100e3b3f2573","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{ProjectBaseline_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject_updated\",\n  \"description\": \"Baseline with current project using project definition_update\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}_updated\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}_Updated\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\\nupdated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}_updated\",\n      \"values\": [\n        \"singlelinetext_updated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value0}}\",\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{ProjectBaseline_ID}}","description":"<p>Edits project baseline with category \"Project Baseline\"</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{ProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3046da64-8b50-4c4a-b986-100e3b3f2573"},{"name":"Edit Project Baseline using Invalid Baseline ID","event":[{"listen":"test","script":{"id":"c5052ab5-a8ca-4e7b-84df-893bd418d18d","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string- Invalid baseline Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});"],"type":"text/javascript"}}],"id":"1075c710-92c9-4e39-9f03-ebad12e4a1ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{ProjectBaseline_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject_updated\",\n  \"description\": \"Baseline with current project using project definition_update\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}_updated\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}_Updated\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\\nupdated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}_updated\",\n      \"values\": [\n        \"singlelinetext_updated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value0}}\",\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/base0000","description":"<p>A \"404 Not Found\" error is thrown, when an invalid baseline id is used while trying to edit project baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","base0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"1075c710-92c9-4e39-9f03-ebad12e4a1ff"},{"name":"Edit Project Baseline without Required Permission","event":[{"listen":"test","script":{"id":"1bf106e8-a329-4f3a-b3f7-1b1c0245ad6a","exec":["pm.test(\"Status code is 403\", function () {","    pm.response.to.have.status(403);","});","","pm.test(\"Body matches string- Forbidden\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"User do not have sufficient permissions: review\"');","});"],"type":"text/javascript"}}],"id":"63f2ba48-c732-4748-966e-ab6b1df077b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"},{"key":"If-Match","type":"text","value":"{{ProjectBaseline_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject_updated\",\n  \"description\": \"Baseline with current project using project definition_update\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}_updated\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}_Updated\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\\nupdated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}_updated\",\n      \"values\": [\n        \"singlelinetext_updated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value0}}\",\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{ProjectBaseline_ID}}","description":"<p>A \"403 Forbidden\" is thrown, when trying to edit project baseline without required permission</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{ProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"63f2ba48-c732-4748-966e-ab6b1df077b4"},{"name":"Edit Project Baseline - Version Mismatch","event":[{"listen":"test","script":{"id":"0325e1e5-f54e-431a-ac62-39062ba5c4d0","exec":["pm.test(\"Status code is 409\", function () {","    pm.response.to.have.status(409);","});","","pm.test(\"Body matches string-  version mismatch\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Version mismatch\"');","});"],"type":"text/javascript"}}],"id":"92dd49af-4a6d-46b2-bc67-90eb255cb8b4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"100"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"BaselineWithCurrentProject_updated\",\n  \"description\": \"Baseline with current project using project definition_update\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_newfield_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"name\": \"{{Attribute_DropDown_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_DropDown_value1}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"name\": \"{{Attribute_Date_Name}}_updated\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"name\": \"{{Attribute_Multiline_Name}}_Updated\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\\nupdated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"name\": \"{{Attribute_Singleline_Name}}_updated\",\n      \"values\": [\n        \"singlelinetext_updated\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"name\": \"{{Attribute_Multiselect_Name}}_updated\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value0}}\",\n        \"{{Attribute_Multiselect_value2}}\"\n      ]\n    }\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{ProjectBaseline_ID}}","description":"<p>A \"409 Conflict\" error is thrown, when a project baseline definition id with invalid version is used while trying to edit project baseline via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{ProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"92dd49af-4a6d-46b2-bc67-90eb255cb8b4"},{"name":"List Baseline Definitions","event":[{"listen":"test","script":{"id":"b89ad2a1-b441-4e3f-81cd-a589d6c7c78a","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","","var schema = {","    \"type\": \"object\",","      \"properties\": {","        \"Offset\":{","            \"type\": \"integer\",","        },","        \"Limit\" : {","            \"type\": \"integer\",","        },","        \"TotalCount\" : {","            \"type\": \"integer\",","        },","        \"BaselineDefinitions\": [","            \"string\",","        ]","      }","};","","pm.test('Schema is valid', function() {","  pm.expect(tv4.validate(jsonData, schema)).to.be.true;","});"],"type":"text/javascript"}}],"id":"9ac633f7-44c3-42d7-a180-3386c2d004eb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/search","description":"<p>Lists the baseline definitions in the project using the project ID.</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","search"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"585ca0e4-cca4-4116-b12f-0c13cfbfb65e","name":"List Baseline Definitions","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Fri, 26 Oct 2018 03:22:36 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"427"},{"key":"Keep-Alive","value":"timeout=15, max=9999"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"baselineDefinitions\": [\n        {\n            \"id\": \"bdef1851\",\n            \"title\": \"baselineDef1_updated in rest\",\n            \"description\": \"testing with baseline definition compare feature updated in rest\",\n            \"category\": \"Deployment Baseline\",\n            \"type\": \"Explicit\",\n            \"projectId\": \"proj1110\",\n            \"version\": 101,\n            \"createdBy\": \"apiUser800\",\n            \"modifiedBy\": \"apiUser800\",\n            \"dateCreated\": \"10/25/2018\",\n            \"dateLastModified\": \"10/25/2018\",\n            \"filter\": {\n                \"trackers\": null,\n                \"planningFolders\": {\n                    \"planningFolderIds\": null,\n                    \"pfTree\": {\n                        \"planningfolders\": null\n                    }\n                },\n                \"documentFolders\": {\n                    \"folderIds\": null,\n                    \"version\": \"\",\n                    \"filters\": {},\n                    \"fields\": null,\n                    \"docTree\": {\n                        \"documentFolder\": null,\n                        \"totalCount\": 0\n                    }\n                },\n                \"scms\": null,\n                \"frs\": {\n                    \"releaseIds\": null\n                },\n                \"binaries\": null\n            }\n        },\n        {\n            \"id\": \"bdef1849\",\n            \"title\": \"baselineDef1_518\",\n            \"description\": \"testing with baseline definition compare feature\",\n            \"category\": \"Delivery Baseline\",\n            \"type\": \"Explicit\",\n            \"projectId\": \"proj1110\",\n            \"version\": 100,\n            \"createdBy\": \"apiUser800\",\n            \"modifiedBy\": \"apiUser800\",\n            \"dateCreated\": \"10/25/2018\",\n            \"dateLastModified\": \"10/25/2018\",\n            \"filter\": {\n                \"trackers\": null,\n                \"planningFolders\": {\n                    \"planningFolderIds\": null,\n                    \"pfTree\": {\n                        \"planningfolders\": null\n                    }\n                },\n                \"documentFolders\": {\n                    \"folderIds\": null,\n                    \"version\": \"\",\n                    \"filters\": {},\n                    \"fields\": null,\n                    \"docTree\": {\n                        \"documentFolder\": null,\n                        \"totalCount\": 0\n                    }\n                },\n                \"scms\": null,\n                \"frs\": {\n                    \"releaseIds\": null\n                },\n                \"binaries\": null\n            }\n        }\n    ],\n    \"limit\": 10,\n    \"totalCount\": 2\n}"}],"_postman_id":"9ac633f7-44c3-42d7-a180-3386c2d004eb"},{"name":"List Baseline Definitions using Invalid Project ID","event":[{"listen":"test","script":{"id":"846becb6-333e-492d-98a0-dc38047d745b","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string - Invalid projectId\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid project id/path\"');","});"],"type":"text/javascript"}}],"id":"ff2c1989-50ed-4df2-a2f0-7c3fda9b4fda","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/proj0000/search","description":"<p>A \"404 Not Found\" error is thrown, when an invalid project id is used while trying to list baseline definitions via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","proj0000","search"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"8d534b2f-bdc3-4998-8657-28cd958e758f","name":"List Baseline Definitions using Invalid Project ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/proj0000/search"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":""}],"_postman_id":"ff2c1989-50ed-4df2-a2f0-7c3fda9b4fda"},{"name":"Search Baseline Definition","event":[{"listen":"test","script":{"id":"5713e877-02a9-474e-b6ae-0c241fe3fb93","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var baseDefId2 = pm.environment.get(\"baseDefId2\");","","pm.test(\"Body matches the baseline definition ID which get searched for.\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+baseDefId2+'\"');","});"],"type":"text/javascript"}}],"id":"56a9c330-6bab-448d-96f6-cf550bfbe776","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/list?searchBy=update","description":"<p>Search for Baseline definitions.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>ProjectId/Path</code> (Required)</li>\n<li><code>Search By</code> (Required) - value - bdef</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","list"],"host":["{{HostName}}"],"query":[{"key":"searchBy","value":"update"}],"variable":[]}},"response":[{"id":"9c15b20b-7f05-4160-8042-61cc3bf47915","name":"Search Baseline Definition","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/definitions/by-project/projects.collabnet_agile_baseline_20/list?searchBy=bdef","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","definitions","by-project","projects.collabnet_agile_baseline_20","list"],"query":[{"key":"searchBy","value":"bdef"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"[\n\t{\n\t\t\"id\": \"bdef1123\",\n\t\t\"name\": \"mid section\"\n\t},\n\t{\n\t\t\"id\": \"bdef1132\",\n\t\t\"name\": \"r last\"\n\t},\n\t{\n\t\t\"id\": \"bdef1129\",\n\t\t\"name\": \"first with last\"\n\t},\n\t{\n\t\t\"id\": \"bdef1115\",\n\t\t\"name\": \"test frs trac\"\n\t},\n\t{\n\t\t\"id\": \"bdef1067\",\n\t\t\"name\": \"Definition 1\"\n\t},\n\t{\n\t\t\"id\": \"bdef1042\",\n\t\t\"name\": \"delete baseline1\"\n\t}\n]"}],"_postman_id":"56a9c330-6bab-448d-96f6-cf550bfbe776"}],"id":"2b7f5849-ea18-4985-acbd-67d8d31f1c2f","description":"<p>Provides the list of APIs used when creating project baselines and a project baseline definition.</p>\n","event":[{"listen":"prerequest","script":{"id":"8a371abe-e461-404a-9d18-44281990341e","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"078386b2-c4c1-4384-9cbb-023f05f2423a","type":"text/javascript","exec":[""]}}],"_postman_id":"2b7f5849-ea18-4985-acbd-67d8d31f1c2f"},{"name":"Comments","item":[{"name":"Add Comments to Baseline","event":[{"listen":"test","script":{"id":"58bd0365-10c6-4625-9d33-22aac7097079","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include(\"Comment saved successfully\");","});",""],"type":"text/javascript"}}],"id":"ffb252e9-0ae0-4e29-8eb2-6e555cb7eddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Adding new comment in the baseline\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId={{baseId2}}","description":"<p>Adds comments to a baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","comment"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"}],"variable":[]}},"response":[{"id":"0f823493-9bbb-48c3-8a60-3bc6db50b69b","name":"AddingCommentsToBaseline","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Adding new comment in the baseline\"\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId={{baseId2}}","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","comment"],"query":[{"key":"objectId","value":"{{baseId2}}"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Oct 2018 15:39:23 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"28"},{"key":"Set-Cookie","value":"JSESSIONID=gWZSuzqaVB3aTem-S60uMkcwhIKU_T1QXwfgOjTY.tf; path=/ctfrest; secure; HttpOnly"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"\"Comment saved successfully\""}],"_postman_id":"ffb252e9-0ae0-4e29-8eb2-6e555cb7eddf"},{"name":"Add Comments to Baseline using Invalid Baseline ID","event":[{"listen":"test","script":{"id":"29ac532b-24f0-49cb-840b-f1683ec7308c","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});",""],"type":"text/javascript"}}],"id":"7026c226-261a-4d8a-8be2-39449c54e00e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Adding new comment in the baseline\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId=base0000","description":"<p>A \"400 Bad Request\" error is thrown, when an invalid baseline id is used when trying to add comments to a baseline via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","comment"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"base0000"}],"variable":[]}},"response":[{"id":"dd8c08d7-1f9e-43b4-9d9c-fd17ef8fd088","name":"AddingCommentsToBaseline_NEG_400","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Adding new comment in the baseline\"\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId=base0000","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","comment"],"query":[{"key":"objectId","value":"base0000"}]}},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Oct 2018 15:40:55 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"88"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"InvalidInput\",\n    \"message\": \"Invalid Baseline Id\",\n    \"parameter\": \"base0000\"\n}"}],"_postman_id":"7026c226-261a-4d8a-8be2-39449c54e00e"},{"name":"Add Comments to Baseline without Baseline Review Permission","event":[{"listen":"test","script":{"id":"323cde55-b62d-4850-a030-28fbf641799c","exec":["pm.test(\"Status code is 403\", function () {","    pm.response.to.have.status(403);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"User do not have sufficient permissions: review\"');","});",""],"type":"text/javascript"}}],"id":"157d5b35-1a28-4c2d-9c4f-8f7842461b22","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Adding new comment in the baseline\"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId={{baseId2}}","description":"<p>A \"403 Forbidden\" error is thrown, when a user without baseline review permission tries to add comments to a baseline via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","comment"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"}],"variable":[]}},"response":[{"id":"f9d5a4ec-0a51-4448-81e6-fb714a7c4432","name":"AddingCommentsToBaseline_NEG","originalRequest":{"method":"POST","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n  \"comment\": \"Adding new comment in the baseline\"\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/comment?objectId={{baseId2}}","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","comment"],"query":[{"key":"objectId","value":"{{baseId2}}"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Mon, 29 Oct 2018 16:02:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"94"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"PermissionDenied\",\n    \"message\": \"User do not have sufficient permissions: review\"\n}"}],"_postman_id":"157d5b35-1a28-4c2d-9c4f-8f7842461b22"},{"name":"Get Comments for Baseline using \"Show All\" Option","event":[{"listen":"test","script":{"id":"23d133f0-c4ea-4f0f-a312-886cc9e290a9","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"newValue\": \"Adding new comment in the baseline\"');","});","","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"operation\": \"create\"');","});",""],"type":"text/javascript"}}],"id":"1b285360-1e73-4bbd-87d9-6bd0c1f720a6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId={{baseId2}}&preference=all","description":"<p>Gets the details of all comments and audit log in a baseline, using the \"Show All\" option</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"},{"key":"preference","value":"all"}],"variable":[]}},"response":[],"_postman_id":"1b285360-1e73-4bbd-87d9-6bd0c1f720a6"},{"name":"Get Comments for Baseline using \"Show All\" Option for an Invalid Baseline ID","event":[{"listen":"test","script":{"id":"1059cb57-e427-45ff-a591-09ed2925a541","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});"],"type":"text/javascript"}}],"id":"0bf7d87d-a98b-4b0d-ba9d-556af63cc429","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}","type":"text"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId=base0000&preference=all","description":"<p>A \"400 Bad Request\" error is thrown, when an invalid baseline id is used when trying to get comments in a baseline using \"Show All\" option, via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"base0000"},{"key":"preference","value":"all"}],"variable":[]}},"response":[],"_postman_id":"0bf7d87d-a98b-4b0d-ba9d-556af63cc429"},{"name":"Get Comments for Baseline using \"Comments Only\" Option","event":[{"listen":"test","script":{"id":"ad2e912f-2876-4275-9351-29e7f06ffee0","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"newValue\": \"Adding new comment in the baseline\"');","});",""],"type":"text/javascript"}}],"id":"85dfe708-d035-4bde-a544-85dbb6eed7e0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId={{baseId2}}&preference=all","description":"<p>Gets the details of only comments in a baseline, using the \"Comments Only\" option</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"},{"key":"preference","value":"all"}],"variable":[]}},"response":[],"_postman_id":"85dfe708-d035-4bde-a544-85dbb6eed7e0"},{"name":"Get Audit Log for Baseline","event":[{"listen":"test","script":{"id":"478c327c-ab51-4e2d-a6bd-ffee1be604a1","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"operation\": \"create\"');","});",""],"type":"text/javascript"}}],"id":"c9b76b07-4c04-4b5d-a0ee-b79da9546ab2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId={{baseId2}}&preference=all&offset=0&limit=10&=&=","description":"<p>Gets audit information for a baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"},{"key":"preference","value":"all"},{"key":"offset","value":"0"},{"key":"limit","value":"10"},{"key":null,"value":""},{"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"c9b76b07-4c04-4b5d-a0ee-b79da9546ab2"},{"name":"Get Comments with Pagination using \"Show All\" Option","event":[{"listen":"test","script":{"id":"84e6f1cd-8064-4097-8da9-309d052b051c","exec":[""],"type":"text/javascript"}}],"id":"d30e3cc3-1fd2-4a39-93b4-38d9058eb105","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId={{baseId2}}&preference=all&offset=0&limit=10&=&=","description":"<p>Gets the details of all comments and audit log including pagination for a baseline, using the \"Show All\" option</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"},{"key":"preference","value":"all"},{"key":"offset","value":"0"},{"key":"limit","value":"10"},{"key":null,"value":""},{"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"d30e3cc3-1fd2-4a39-93b4-38d9058eb105"},{"name":"Get Comments with Pagination using \"Comments Only\" Option","event":[{"listen":"test","script":{"id":"9fa9dd2e-ff6d-40cb-9a5d-10902927eea5","exec":[""],"type":"text/javascript"}}],"id":"9565e538-c823-4622-a834-c33281a496da","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","type":"text","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/audit?objectId={{baseId2}}&preference=commentsOnly&offset=0&limit=10&=&=","description":"<p>Gets the details of only comments including pagination for a baseline, using the \"Comments Only\" option</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","audit"],"host":["{{HostName}}"],"query":[{"key":"objectId","value":"{{baseId2}}"},{"key":"preference","value":"commentsOnly"},{"key":"offset","value":"0"},{"key":"limit","value":"10"},{"key":null,"value":""},{"key":"","value":""}],"variable":[]}},"response":[],"_postman_id":"9565e538-c823-4622-a834-c33281a496da"}],"id":"4cea4a9c-0f5d-4427-b8ac-ba00cc32f4d8","description":"<p>Provides the list of APIs used for handling comments in baselines</p>\n","event":[{"listen":"prerequest","script":{"id":"e734983d-4184-455d-aa59-3633b9217fd4","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"949d65d1-f3b5-4f8f-8d9c-4f1f4a10b107","type":"text/javascript","exec":[""]}}],"_postman_id":"4cea4a9c-0f5d-4427-b8ac-ba00cc32f4d8"},{"name":"Baseline Association - Trackers, Documents, File Releases","item":[{"name":"Get Associated Baseline Details for an Artifact","event":[{"listen":"test","script":{"id":"094893f5-db14-4f81-b5ea-0eea3746b803","exec":["var baseId = pm.environment.get(\"baseId1\");","var baseFlexFieldId = pm.environment.get(\"baseFlexFieldId\");","var artifactId = pm.environment.get(\"ArtifactID1\");","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response body should match to the baseline Id which get associated with artifact.\", function () {","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseId+'\",');","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseFlexFieldId+'\",');","});","","","pm.test(\"Response body should match to the artifact Id which get associated with baseline .\", function () {","    pm.expect(pm.response.text()).to.include('\"artifactId\": \"'+artifactId+'\"');","});","","pm.test(\"Total associated result count should be 2\", function () {","     pm.expect(pm.response.text()).to.include('\"totalResultsCount\": \"2\"');","});"],"type":"text/javascript"}}],"id":"9508509d-1597-442e-94f1-46205dae3daa","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/{{ArtifactID1}}/baselines","description":"<p>Gets the details of the baselines associated with the artifact</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Artifact Id</code> (Required)</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","{{ArtifactID1}}","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"10835653-c4e7-4e88-a954-5ddd769ed656","name":"Get Associated Baseline Details for an Artifact","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/item/artf1001/baselines?limit=-1","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","item","artf1001","baselines"],"query":[{"key":"limit","value":"-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"totalResultsCount\": \"26\",\n\t\"itemList\": [\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"10/22/2019 03:07:27\",\n\t\t\t\"baselineId\": \"base1025\",\n\t\t\t\"baselineName\": \"22Oct19ProjectBaseline\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"10/21/2019 03:33:55\",\n\t\t\t\"baselineId\": \"base1024\",\n\t\t\t\"baselineName\": \"Baseline with documents\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"10/21/2019 02:11:12\",\n\t\t\t\"baselineId\": \"base1017\",\n\t\t\t\"baselineName\": \"de\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"08/21/2019 11:16:15\",\n\t\t\t\"baselineId\": \"base1002\",\n\t\t\t\"baselineName\": \"test\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:48:42\",\n\t\t\t\"baselineId\": \"base1121\",\n\t\t\t\"baselineName\": \"Test Project Baseline1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:45:43\",\n\t\t\t\"baselineId\": \"base1120\",\n\t\t\t\"baselineName\": \"Test Project Baseline\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:13:19\",\n\t\t\t\"baselineId\": \"base1119\",\n\t\t\t\"baselineName\": \"External Baselines Test\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"05/20/2020 07:07:05\",\n\t\t\t\"baselineId\": \"base1118\",\n\t\t\t\"baselineName\": \"External Baselines1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"05/20/2020 06:40:42\",\n\t\t\t\"baselineId\": \"base1117\",\n\t\t\t\"baselineName\": \"External Baselines\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/25/2020 09:08:01\",\n\t\t\t\"baselineId\": \"base1115\",\n\t\t\t\"baselineName\": \"test eeeeee\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/23/2020 10:39:46\",\n\t\t\t\"baselineId\": \"base1102\",\n\t\t\t\"baselineName\": \"PBL New baseline with doc url 2420\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/23/2020 07:50:24\",\n\t\t\t\"baselineId\": \"base1114\",\n\t\t\t\"baselineName\": \"1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:33:40\",\n\t\t\t\"baselineId\": \"base1087\",\n\t\t\t\"baselineName\": \"proj base\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:30:56\",\n\t\t\t\"baselineId\": \"base1086\",\n\t\t\t\"baselineName\": \"test from def\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:24:55\",\n\t\t\t\"baselineId\": \"base1085\",\n\t\t\t\"baselineName\": \"from draft baseline\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:22:13\",\n\t\t\t\"baselineId\": \"base1084\",\n\t\t\t\"baselineName\": \"test frs trac\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 10:05:53\",\n\t\t\t\"baselineId\": \"base1083\",\n\t\t\t\"baselineName\": \"test after fix locally\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 04:22:07\",\n\t\t\t\"baselineId\": \"base1092\",\n\t\t\t\"baselineName\": \"last with first\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/22/2020 02:41:21\",\n\t\t\t\"baselineId\": \"base1088\",\n\t\t\t\"baselineName\": \"New Baseline 22apr20 - check\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/21/2020 10:19:26\",\n\t\t\t\"baselineId\": \"base1082\",\n\t\t\t\"baselineName\": \"ssssss\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"04/21/2020 10:14:27\",\n\t\t\t\"baselineId\": \"base1081\",\n\t\t\t\"baselineName\": \"test tra\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"none\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"03/24/2020 12:32:17\",\n\t\t\t\"baselineId\": \"base1044\",\n\t\t\t\"baselineName\": \"basedefcmp1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"03/23/2020 12:27:20\",\n\t\t\t\"baselineId\": \"base1043\",\n\t\t\t\"baselineName\": \"test with new data\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"03/20/2020 08:57:12\",\n\t\t\t\"baselineId\": \"base1034\",\n\t\t\t\"baselineName\": \"Project Baseline 1\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"03/20/2020 08:50:07\",\n\t\t\t\"baselineId\": \"base1033\",\n\t\t\t\"baselineName\": \"newbaseline1\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t},\n\t\t{\n\t\t\t\"artifactId\": \"artf1001\",\n\t\t\t\"assignedTo\": {\n\t\t\t\t\"full_name\": \"No user\",\n\t\t\t\t\"username\": \"nobody\"\n\t\t\t},\n\t\t\t\"baselineDateCreated\": \"03/17/2020 12:13:45\",\n\t\t\t\"baselineId\": \"base1028\",\n\t\t\t\"baselineName\": \"delete baseline\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"date field\": \"\",\n\t\t\t\"ms \": \"\",\n\t\t\t\"planningFolder\": \"Product 1\",\n\t\t\t\"priority\": \"4\",\n\t\t\t\"ss\": \"\",\n\t\t\t\"status\": \"Under Consideration\",\n\t\t\t\"te\": \"\",\n\t\t\t\"title\": \"[sample] Epic Four\",\n\t\t\t\"user field\": {\n\t\t\t\t\"full_name\": \"\",\n\t\t\t\t\"username\": \"\"\n\t\t\t}\n\t\t}\n\t],\n\t\"manifestFieldNames\": [\n\t\t\"baselineId\",\n\t\t\"baselineName\",\n\t\t\"baselineStatus\",\n\t\t\"baselineDateCreated\",\n\t\t\"artifactId\",\n\t\t\"title\",\n\t\t\"status\",\n\t\t\"priority\",\n\t\t\"assignedTo\",\n\t\t\"planningFolder\",\n\t\t\"te\",\n\t\t\"ms \",\n\t\t\"ss\",\n\t\t\"date field\",\n\t\t\"user field\"\n\t]\n}"}],"_postman_id":"9508509d-1597-442e-94f1-46205dae3daa"},{"name":"Get Associated Baseline Details for Invalid Artifact ID","event":[{"listen":"test","script":{"id":"f8d10a7f-0e58-4c67-8100-b24cebb71c0e","exec":["","pm.test(\"Status code is 400 - Bad Request\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Response body should contain message as invalid ID\", function () {","     pm.expect(pm.response.text()).to.include('\"message\": \"Invalid id\"');","});","","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"Bad Request\");","});"],"type":"text/javascript"}}],"id":"c31d3332-91ff-4e02-b4a0-7e8f987f548f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/artf0000/baselines","description":"<p>A \"400 Bad Request\" error is thrown, when trying to get the details of associated baselines using an invalid artifact id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","artf0000","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c31d3332-91ff-4e02-b4a0-7e8f987f548f"},{"name":"Get Associated Baseline Details for a Document","event":[{"listen":"test","script":{"id":"f2a0bd6e-3ca2-48f6-962f-9f81204cd8ec","exec":["var baseId = pm.environment.get(\"baseId1\");","var baseFlexFieldId = pm.environment.get(\"baseFlexFieldId\");","var docId = pm.environment.get(\"DocId2\");","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response body should match to the baseline Id which get associated with document.\", function () {","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseId+'\",');","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseFlexFieldId+'\",');","});","","pm.test(\"Response body should match to the document ID which get associated with baseline.\", function () {","    pm.expect(pm.response.text()).to.include('\"documentId\": \"'+docId+'\"');","});","","pm.test(\"Total associated result count should be 1\", function () {","     pm.expect(pm.response.text()).to.include('\"totalResultsCount\": \"2\"');","});"],"type":"text/javascript"}}],"id":"7a6f8f0e-6e35-4e1e-9a5f-7098759d5bc6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/{{DocId2}}/baselines","description":"<p>Gets the details of the baselines associated with a document.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Document Id</code> (Required)</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","{{DocId2}}","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"21942b77-aab1-4ae7-bb9d-98881a049613","name":"Get Associated Baseline Details for a Document","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/item/doc1169/baselines?limit=-1","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","item","doc1169","baselines"],"query":[{"key":"limit","value":"-1"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"totalResultsCount\": \"21\",\n\t\"itemList\": [\n\t\t{\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:48:42\",\n\t\t\t\"baselineId\": \"base1121\",\n\t\t\t\"baselineName\": \"Test Project Baseline1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:45:43\",\n\t\t\t\"baselineId\": \"base1120\",\n\t\t\t\"baselineName\": \"Test Project Baseline\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/23/2020 10:39:46\",\n\t\t\t\"baselineId\": \"base1102\",\n\t\t\t\"baselineName\": \"PBL New baseline with doc url 2420\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/23/2020 10:38:33\",\n\t\t\t\"baselineId\": \"base1101\",\n\t\t\t\"baselineName\": \"New baseline with doc url 2320\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/23/2020 02:57:49\",\n\t\t\t\"baselineId\": \"base1104\",\n\t\t\t\"baselineName\": \"bsaeline as draft when doc url is check\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:33:40\",\n\t\t\t\"baselineId\": \"base1087\",\n\t\t\t\"baselineName\": \"proj base\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:30:56\",\n\t\t\t\"baselineId\": \"base1086\",\n\t\t\t\"baselineName\": \"test from def\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:22:13\",\n\t\t\t\"baselineId\": \"base1084\",\n\t\t\t\"baselineName\": \"test frs trac\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 04:28:49\",\n\t\t\t\"baselineId\": \"base1097\",\n\t\t\t\"baselineName\": \"error check\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 04:27:38\",\n\t\t\t\"baselineId\": \"base1096\",\n\t\t\t\"baselineName\": \"asfsdf\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 04:26:01\",\n\t\t\t\"baselineId\": \"base1095\",\n\t\t\t\"baselineName\": \"asfsd\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 04:23:04\",\n\t\t\t\"baselineId\": \"base1093\",\n\t\t\t\"baselineName\": \"ssdsds\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 04:22:07\",\n\t\t\t\"baselineId\": \"base1092\",\n\t\t\t\"baselineName\": \"last with first\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 03:52:27\",\n\t\t\t\"baselineId\": \"base1089\",\n\t\t\t\"baselineName\": \"ddd ddd\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 02:41:21\",\n\t\t\t\"baselineId\": \"base1088\",\n\t\t\t\"baselineName\": \"New Baseline 22apr20 - check\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/16/2020 10:39:25\",\n\t\t\t\"baselineId\": \"base1068\",\n\t\t\t\"baselineName\": \"teasf\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/16/2020 10:38:18\",\n\t\t\t\"baselineId\": \"base1067\",\n\t\t\t\"baselineName\": \"ffsfdsfsd\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/24/2020 12:32:17\",\n\t\t\t\"baselineId\": \"base1044\",\n\t\t\t\"baselineName\": \"basedefcmp1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/24/2020 02:10:22\",\n\t\t\t\"baselineId\": \"base1048\",\n\t\t\t\"baselineName\": \"ext baseline test\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/24/2020 01:40:50\",\n\t\t\t\"baselineId\": \"base1046\",\n\t\t\t\"baselineName\": \"Definition 1\",\n\t\t\t\"baselineStatus\": \"Submitted\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/23/2020 12:27:20\",\n\t\t\t\"baselineId\": \"base1043\",\n\t\t\t\"baselineName\": \"test with new data\",\n\t\t\t\"baselineStatus\": \"Approved\",\n\t\t\t\"documentId\": \"doc1169\",\n\t\t\t\"documentVersionStoredUrl\": \"\",\n\t\t\t\"status\": \"Draft\",\n\t\t\t\"title\": \"second\",\n\t\t\t\"version\": \"Version 2\"\n\t\t}\n\t],\n\t\"manifestFieldNames\": [\n\t\t\"baselineId\",\n\t\t\"baselineName\",\n\t\t\"baselineStatus\",\n\t\t\"baselineDateCreated\",\n\t\t\"documentVersionStoredUrl\",\n\t\t\"documentId\",\n\t\t\"title\",\n\t\t\"status\",\n\t\t\"version\"\n\t]\n}"}],"_postman_id":"7a6f8f0e-6e35-4e1e-9a5f-7098759d5bc6"},{"name":"Get Associated Baseline Details for Invalid Document ID","event":[{"listen":"test","script":{"id":"e47d5bc1-b736-4c8a-a962-6b743d189fe0","exec":["","pm.test(\"Status code is 400 - Bad Request\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Response body should contain message as invalid ID\", function () {","     pm.expect(pm.response.text()).to.include('\"message\": \"Invalid id\"');","});","","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"Bad Request\");","});"],"type":"text/javascript"}}],"id":"e3c1f76a-e6ad-4eb6-8163-b5614428b83d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/doc0000/baselines","description":"<p>A \"400 Bad Request\" error is thrown, when trying to get the details of associated baselines using an invalid document id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","doc0000","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e3c1f76a-e6ad-4eb6-8163-b5614428b83d"},{"name":"Get Associated Baseline Details for a File Release","event":[{"listen":"test","script":{"id":"b7a244fc-c7a1-43f1-b750-69d8ce4e75b0","exec":["var baseId = pm.environment.get(\"baseId1\");","var baseId2 = pm.environment.get(\"baseId2\");","var baseFlexFieldId = pm.environment.get(\"baseFlexFieldId\");","var ProjectBaseline_ID = pm.environment.get(\"ProjectBaseline_ID\");","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response body should match to all baseline Id which get associated with release.\", function () {","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseId+'\",');","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseId2+'\"');","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+baseFlexFieldId+'\",');","    pm.expect(pm.response.text()).to.include('\"baselineId\": \"'+ProjectBaseline_ID+'\",');","});","","pm.test(\"Total associated result count should be 4\", function () {","     pm.expect(pm.response.text()).to.include('\"totalResultsCount\": \"4\"');","});"],"type":"text/javascript"}}],"id":"5db437cf-9ad7-4ac1-9704-93ed428ad799","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/{{ReleaseID1}}/baselines","description":"<p>Gets the details of the baselines associated with a file release.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>File Release Id</code> (Required)</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","{{ReleaseID1}}","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"95a39160-74c6-48d5-ae7e-5bc3baf2891c","name":"Get Associated Baseline Details for a File Release","originalRequest":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/item/rel1002/baselines?limit=-1","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","item","rel1002","baselines"],"query":[{"key":"limit","value":"-1"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"totalResultsCount\": \"11\",\n\t\"itemList\": [\n\t\t{\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:48:42\",\n\t\t\t\"baselineId\": \"base1121\",\n\t\t\t\"baselineName\": \"Test Project Baseline1\",\n\t\t\t\"baselineStatus\": \"Submitted\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"05/20/2020 08:45:43\",\n\t\t\t\"baselineId\": \"base1120\",\n\t\t\t\"baselineName\": \"Test Project Baseline\",\n\t\t\t\"baselineStatus\": \"Approved\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/23/2020 10:39:46\",\n\t\t\t\"baselineId\": \"base1102\",\n\t\t\t\"baselineName\": \"PBL New baseline with doc url 2420\",\n\t\t\t\"baselineStatus\": \"Approved\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:33:40\",\n\t\t\t\"baselineId\": \"base1087\",\n\t\t\t\"baselineName\": \"proj base\",\n\t\t\t\"baselineStatus\": \"Approved\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"04/22/2020 11:24:55\",\n\t\t\t\"baselineId\": \"base1085\",\n\t\t\t\"baselineName\": \"from draft baseline\",\n\t\t\t\"baselineStatus\": \"Submitted\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/24/2020 12:32:17\",\n\t\t\t\"baselineId\": \"base1044\",\n\t\t\t\"baselineName\": \"basedefcmp1\",\n\t\t\t\"baselineStatus\": \"Submitted\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/24/2020 02:10:22\",\n\t\t\t\"baselineId\": \"base1048\",\n\t\t\t\"baselineName\": \"ext baseline test\",\n\t\t\t\"baselineStatus\": \"Submitted\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/24/2020 01:40:50\",\n\t\t\t\"baselineId\": \"base1046\",\n\t\t\t\"baselineName\": \"Definition 1\",\n\t\t\t\"baselineStatus\": \"Submitted\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/23/2020 12:27:20\",\n\t\t\t\"baselineId\": \"base1043\",\n\t\t\t\"baselineName\": \"test with new data\",\n\t\t\t\"baselineStatus\": \"Approved\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/20/2020 08:57:12\",\n\t\t\t\"baselineId\": \"base1034\",\n\t\t\t\"baselineName\": \"Project Baseline 1\",\n\t\t\t\"baselineStatus\": \"Approved\"\n\t\t},\n\t\t{\n\t\t\t\"baselineDateCreated\": \"03/20/2020 08:50:07\",\n\t\t\t\"baselineId\": \"base1033\",\n\t\t\t\"baselineName\": \"newbaseline1\",\n\t\t\t\"baselineStatus\": \"Approved\"\n\t\t}\n\t],\n\t\"manifestFieldNames\": [\n\t\t\"baselineId\",\n\t\t\"baselineName\",\n\t\t\"baselineStatus\",\n\t\t\"baselineDateCreated\"\n\t]\n}"}],"_postman_id":"5db437cf-9ad7-4ac1-9704-93ed428ad799"},{"name":"Get Associated Baseline Details for Invalid Release ID","event":[{"listen":"test","script":{"id":"0983f9f8-498a-4459-850c-465752b46c69","exec":["","pm.test(\"Status code is 400 - Bad Request\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Response body should contain message as invalid ID\", function () {","     pm.expect(pm.response.text()).to.include('\"message\": \"Invalid id\"');","});","","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"Bad Request\");","});"],"type":"text/javascript"}}],"id":"3e869088-04ce-4a0d-97e0-07a923829eae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/rel0000/baselines","description":"<p>A \"400 Bad Request\" error is thrown, when trying to get the details of associated baselines using an invalid document id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","rel0000","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3e869088-04ce-4a0d-97e0-07a923829eae"},{"name":"Get Associated Baseline Details for Invalid Document Folder ID","event":[{"listen":"test","script":{"id":"cf1421e2-6b7a-4698-81fe-d9353bc19f44","exec":["","pm.test(\"Status code is 404 - Not Found\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Response body should contain message as page not found for incorrect object ID\", function () {","     pm.expect(pm.response.text()).to.include('404 page not found');","});","","pm.test(\"Status code name has string\", function () {","    pm.response.to.have.status(\"Not Found\");","});"],"type":"text/javascript"}}],"id":"3238c029-856a-432e-853e-ccd18ea9f560","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/docf2342/baselines","description":"<p>A \"404 Page Not Found\" error is thrown, when trying to get the details of associated baselines using an invalid document folder id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","docf2342","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3238c029-856a-432e-853e-ccd18ea9f560"},{"name":"Get Associated Baseline Details for Artifact Not used in Baselines","event":[{"listen":"test","script":{"id":"e3a2cbe3-7518-444b-8f51-798b4874944b","exec":["","pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Response body should contain result count as 0 since the artifact is not get filtered in baseline\", function () {","     pm.expect(pm.response.text()).to.include('\"totalResultsCount\": \"0\"');","});",""],"type":"text/javascript"}}],"id":"b35d5ec6-dfe2-415a-9e03-700fff03db12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/{{Tracker_3_ArtifactID0}}/baselines","description":"<p>Returns \"0\", if the artifact is not used in any of the existing baselines in the project</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","{{Tracker_3_ArtifactID0}}","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"b35d5ec6-dfe2-415a-9e03-700fff03db12"},{"name":"Get Associated Baseline Details for Restricted Users without Access to Project","event":[{"listen":"test","script":{"id":"e4b9086f-ef21-4c05-a7e2-686b4ea93c2a","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});"],"type":"text/javascript"}}],"id":"874615a0-c9ff-432e-ba16-e3c883bf14b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/item/{{ArtifactID1}}/baselines","description":"<p>A \"401 Unauthorized\" error is thrown, if a user without project access permission try to get the details of baselines associated with the artifact, via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","item","{{ArtifactID1}}","baselines"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"874615a0-c9ff-432e-ba16-e3c883bf14b9"}],"id":"85e42e7a-e05c-4d9e-bc59-3274ce79f5ab","description":"<p>Provides the list of APIs used for handling the association between baselines and TeamForge components such as Trackers, Documents, and File Releases</p>\n","event":[{"listen":"prerequest","script":{"id":"cf6809b6-2526-406a-b28f-eb64ab7110bf","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"19e70c42-69b4-4d68-9d7c-abca9d19f09f","type":"text/javascript","exec":[""]}}],"_postman_id":"85e42e7a-e05c-4d9e-bc59-3274ce79f5ab"},{"name":"Baseline Monitoring","item":[{"name":"Get Baseline Monitoring Status","event":[{"listen":"test","script":{"id":"bd300104-52ce-4ed2-b3d7-6cabae96e30d","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string isMonitored to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"isMonitored\": true');","});"],"type":"text/javascript"}}],"id":"800a7b6b-2be1-4a78-a8a6-36977020e05f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/{{baseId1}}","description":"<p>Gets the monitoring status of the baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","{{baseId1}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"800a7b6b-2be1-4a78-a8a6-36977020e05f"},{"name":"Get Baseline Monitoring Status using Invalid Baseline ID","event":[{"listen":"test","script":{"id":"4427c37f-94d3-4964-8bf2-b027f9dc423d","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string Invalid baseline Id\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});"],"type":"text/javascript"}}],"id":"7e528c98-1ac4-4043-be45-a9eea0525479","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/base0000","description":"<p>\"A 404 Not Found\" error is thrown, when trying to get the monitoring status of the baseline using invalid baseline id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","base0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"7e528c98-1ac4-4043-be45-a9eea0525479"},{"name":"Get Baseline Monitoring Status by Unauthorized User","event":[{"listen":"test","script":{"id":"f4493900-302b-4cd3-ba92-0cf9c690e3cd","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string Invalid baseline Id\", function () {","    pm.expect(pm.response.text()).to.include('\"You must have \\'view\\' permission to perform this action\"');","});"],"type":"text/javascript"}}],"id":"40c1d873-ce04-49ba-9477-fc71da1583a7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token2}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/{{baseId2}}","description":"<p>A \"401 Unauthorized\" error is thrown, when a user without \"view baseline\" permission tries to see the monitoring status of the baseline, via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","{{baseId2}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"40c1d873-ce04-49ba-9477-fc71da1583a7"},{"name":"Unmonitor Baseline","event":[{"listen":"test","script":{"id":"c082f3a6-110a-47db-898d-b894c6df1d32","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string isMonitored to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"isMonitored\": false');","});"],"type":"text/javascript"}}],"id":"e2c2daae-c945-498d-90d8-d0bf1dd96147","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n\"isMonitored\" : false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/{{baseId1}}","description":"<p>Sets the monitoring status of the baseline to \"False\" to unmonitor the baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","{{baseId1}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"e2c2daae-c945-498d-90d8-d0bf1dd96147"},{"name":"Get Monitoring Status for Unmonitored Baseline","event":[{"listen":"test","script":{"id":"24325337-6ad6-4f84-b9f8-cbbd3eef94d4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string isMonitored to be false\", function () {","    pm.expect(pm.response.text()).to.include('\"isMonitored\": false');","});"],"type":"text/javascript"}}],"id":"82f29ae3-6ce9-41e7-9471-5e22bdab6871","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/{{baseId1}}","description":"<p>Gets the monitoring status for the baseline that is not being monitored</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","{{baseId1}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"82f29ae3-6ce9-41e7-9471-5e22bdab6871"},{"name":"Set Baseline Monitoring Status to \"True\"","event":[{"listen":"test","script":{"id":"622ccdc3-c253-4494-ac79-cb3c5785db88","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string isMonitored to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"isMonitored\": true');","});"],"type":"text/javascript"}}],"id":"73350759-c7ac-405e-9f16-c12b7c572388","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n\"isMonitored\" : true\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/{{baseId1}}","description":"<p>Sets the monitoring status of the baseline to \"True\"</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","{{baseId1}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"73350759-c7ac-405e-9f16-c12b7c572388"},{"name":"Unmonitor Baseline by Unauthorized User","event":[{"listen":"test","script":{"id":"7687493c-6933-4d14-aee3-ada16d452ee4","exec":["pm.test(\"Status code is 401\", function () {","    pm.response.to.have.status(401);","});","","pm.test(\"Body matches string isMonitored to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"You must have \\'view\\' permission to perform this action\"');","});"],"type":"text/javascript"}}],"id":"ea021dab-f646-4c9f-8122-e04fa89b181d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token2}}"}],"body":{"mode":"raw","raw":"{\n\"isMonitored\" : false\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/{{baseId2}}","description":"<p>A \"401 Unauthorized\" error is thrown, when a user without \"view baseline\" permission tries to unmonitor a baseline, via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","{{baseId2}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"ea021dab-f646-4c9f-8122-e04fa89b181d"},{"name":"Set Baseline Monitoring Status using Invalid Baseline ID","event":[{"listen":"test","script":{"id":"4d10419e-8d76-49e6-8f5f-5fc5c48ccd0d","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string isMonitored to be true\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Invalid Baseline Id\"');","});"],"type":"text/javascript"}}],"id":"3113128d-1686-421b-a8c1-0367c945382b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n\"isMonitored\" : true\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/monitor/baseline/base0000","description":"<p>A \"404 Not Found\" error is thrown, when a user tries to change the baseline monitoring status using invalid baseline id via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","monitor","baseline","base0000"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"3113128d-1686-421b-a8c1-0367c945382b"}],"id":"0fea6520-1bb4-4ebd-a2ec-5cf1057600e8","description":"<p>Provides the list of APIs used to monitor or unmonitor baselines</p>\n","event":[{"listen":"prerequest","script":{"id":"db75d7a2-a6e2-41c5-baa4-9ed691b0aa96","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"3c4425c8-d905-41b3-950b-d395244cf7ca","type":"text/javascript","exec":[""]}}],"_postman_id":"0fea6520-1bb4-4ebd-a2ec-5cf1057600e8"},{"name":"External Baselines","item":[{"name":"List External Baselines","event":[{"listen":"test","script":{"id":"06a1115b-fbfe-40ca-b115-87474fa04a02","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","if(jsonData[0]){"," for(var i=0; i<1; i++){","     for(var j=0; j<1; j++){","         console.log(\"Inside For loop\", i , j);","         pm.environment.set(\"ExternalProjectID_\"+i+\"\", jsonData[i].projectId);","         pm.environment.set(\"ExternalBaselineID_\"+i+\"\", jsonData[i].baselines[j].id);","     }"," }","}","else{","console.log(\"Inside else loop\");","pm.environment.set(\"ExternalProjectID\", jsonData.projectId);","pm.environment.set(\"ExternalBaselineID\", jsonData.baselines[0].id);","}"],"type":"text/javascript"}}],"id":"5b9edf27-3ae5-4865-a84e-a5bce89fb2c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/search?offset=0&sortBy=dateCreated&sortOrder=asc&type=external","description":"<p>Lists the baselines from other TeamForge projects</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","search"],"host":["{{HostName}}"],"query":[{"key":"offset","value":"0"},{"key":"sortBy","value":"dateCreated"},{"key":"sortOrder","value":"asc"},{"key":"type","value":"external"}],"variable":[]}},"response":[{"id":"aaf3b6df-e60e-4af2-a3b3-fd3eabdb2688","name":"ListExternalBaselineAmongAllProjects","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n}"},"url":{"raw":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/search?offset=0&sortBy=dateCreated&sortOrder=asc&type=external","host":["{{HostName}}"],"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","search"],"query":[{"key":"offset","value":"0"},{"key":"sortBy","value":"dateCreated"},{"key":"sortOrder","value":"asc"},{"key":"type","value":"external"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Jan 2019 09:24:19 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Vary","value":"Accept-Encoding,User-Agent"},{"key":"Content-Encoding","value":"gzip"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Content-Length","value":"250"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"projectId\": \"proj1010\",\n        \"projectName\": \"Test1\",\n        \"projectPath\": \"projects.test1\",\n        \"baselines\": [\n            {\n                \"id\": \"base1001\",\n                \"title\": \"TEST1\",\n                \"projectPath\": \"\"\n            },\n            {\n                \"id\": \"base1003\",\n                \"title\": \"binary\",\n                \"projectPath\": \"\"\n            },\n            {\n                \"id\": \"base1006\",\n                \"title\": \"ProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaselineProjectBaseline\",\n                \"projectPath\": \"\"\n            },\n            {\n                \"id\": \"base1007\",\n                \"title\": \"Raw1BaselineTest\",\n                \"projectPath\": \"\"\n            },\n            {\n                \"id\": \"base1009\",\n                \"title\": \"Test2\",\n                \"projectPath\": \"\"\n            }\n        ]\n    },\n    {\n        \"projectId\": \"proj1008\",\n        \"projectName\": \"CollabNet Agile Baseline 2.0\",\n        \"projectPath\": \"projects.collabnet_agile_baseline_20\",\n        \"baselines\": [\n            {\n                \"id\": \"base1002\",\n                \"title\": \"create baseline\",\n                \"projectPath\": \"\"\n            }\n        ]\n    }\n]"}],"_postman_id":"5b9edf27-3ae5-4865-a84e-a5bce89fb2c7"},{"name":"Create a Baseline with External Baselines","event":[{"listen":"test","script":{"id":"de9043d3-42a9-41d3-9158-861b991db071","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Baseline_ExternalID\", jsonData.id);","pm.environment.set(\"Baseline_ExternalTitle\", jsonData.title);","pm.environment.set(\"Baseline_ExternalVersion\", jsonData.version);"],"type":"text/javascript"}}],"id":"f4c1ec63-e9c0-46db-af99-83469b8ec29c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"ExternalBaseline_2304\",\n  \"description\": \"Creating the baseline with external baseline option and nested baseline\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"{{category_delivery_Id}}\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2019-1-17\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"Testing multiline text box\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"Testing single line text box\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ],\n \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_0}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"Artifact\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_tracker1}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_open_t1}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          }\n        },\n        {\n          \"id\": \"{{TrackerID}}\",\n          \"filters\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"\",\n              \"condition\": \"\",\n              \"values\": [],\n              \"LeftFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"\",\n                      \"condition\": \"\",\n                      \"values\": [],\n                      \"LeftFV\": {\n                        \"attribute\": \"title\",\n                        \"condition\": \"5\",\n                        \"values\": [\n                          \"Artifact\"\n                        ]\n                      },\n                      \"RightFV\": {\n                        \"attribute\": \"{{priority_fildID}}\",\n                        \"condition\": \"13\",\n                        \"values\": [\n                          \"2\"\n                        ],\n                        \"FVCondition\": \"\"\n                      },\n                      \"FVCondition\": \"2\"\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{PF_fildID}}\",\n                      \"condition\": \"19\",\n                      \"values\": [\n                        \"{{PF_title}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{team_fildID}}\",\n                    \"condition\": \"19\",\n                    \"values\": [\n                      \"{{Team_title}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"RightFV\": {\n                  \"attribute\": \"\",\n                  \"condition\": \"\",\n                  \"values\": [],\n                  \"LeftFV\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"LeftFV\": {\n                      \"attribute\": \"{{Group_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{Group_val1_Id}}\",\n                        \"{{Group_val2_Id}}\"\n                      ]\n                    },\n                    \"RightFV\": {\n                      \"attribute\": \"{{Customer_ID}}\",\n                      \"condition\": \"13\",\n                      \"values\": [\n                        \"{{customer_val1_Id}}\"\n                      ],\n                      \"FVCondition\": \"\"\n                    },\n                    \"FVCondition\": \"2\"\n                  },\n                  \"RightFV\": {\n                    \"attribute\": \"{{Category_ID}}\",\n                    \"condition\": \"13\",\n                    \"values\": [\n                      \"{{Category_val2_Id}}\"\n                    ],\n                    \"FVCondition\": \"\"\n                  },\n                  \"FVCondition\": \"2\"\n                },\n                \"FVCondition\": \"3\"\n              },\n              \"RightFV\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"LeftFV\": {\n                  \"attribute\": \"{{MSFF_ID}}\",\n                  \"condition\": \"15\",\n                  \"values\": [\n                    \"{{MSFF_Val1ID}}\",\n                    \"{{MSFF_Val2ID}}\"\n                  ]\n                },\n                \"RightFV\": {\n                  \"attribute\": \"{{TkrSSFldID}}\",\n                  \"condition\": \"13\",\n                  \"values\": [\n                    \"{{TkrSSFldVal2ID}}\"\n                  ],\n                  \"FVCondition\": \"\"\n                },\n                \"FVCondition\": \"2\"\n              },\n              \"FVCondition\": \"3\"\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{reportedInRel_fildID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{ReleaseID1}}\"\n              ]\n            },\n            \"FVCondition\": \"3\"\n          }\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{DocRootFolderId}}\",\n          \"{{DocFolderId1}}\",\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {\n          \"attribute\": \"\",\n          \"condition\": \"\",\n          \"values\": [],\n          \"LeftFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"title\",\n              \"condition\": \"5\",\n              \"values\": [\n                \"doc\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{status_fildID_Doc}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{status_Draft_Doc}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"RightFV\": {\n            \"attribute\": \"\",\n            \"condition\": \"\",\n            \"values\": [],\n            \"LeftFV\": {\n              \"attribute\": \"{{DocSingleSelectFldID}}\",\n              \"condition\": \"13\",\n              \"values\": [\n                \"{{Doc_SSFF_Val2ID}}\"\n              ]\n            },\n            \"RightFV\": {\n              \"attribute\": \"{{DocMultiSelectFldID}}\",\n              \"condition\": \"15\",\n              \"values\": [\n                \"{{Doc_MSFF_Val3ID}}\"\n              ],\n              \"FVCondition\": \"\"\n            },\n            \"FVCondition\": \"2\"\n          },\n          \"FVCondition\": \"3\",\n          \"isInvalid\": false\n        },\n        \"docTree\": {\n          \"documentFolder\": {\n            \"internalDisabled\": false,\n            \"internalChecked\": true,\n            \"internalCollapsed\": false,\n            \"text\": \"Root Folder\",\n            \"value\": \"{{DocRootFolderId}}\",\n            \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n            \"parentFolderId\": \"{{DocParentFolderID}}\",\n            \"internalChildren\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"DocFolder1\",\n                \"value\": \"{{DocFolderId1}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{DocRootFolderId}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": false,\n                    \"text\": \"ChildDocFolder\",\n                    \"value\": \"{{ChildDocFolderId}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{DocFolderId1}}\"\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{PF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"planningfolders\": {\n            \"children\": [\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": false,\n                \"internalCollapsed\": true,\n                \"text\": \"None\",\n                \"value\": \"none\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n              },\n              {\n                \"internalDisabled\": false,\n                \"internalChecked\": true,\n                \"internalCollapsed\": false,\n                \"text\": \"{{PF_title}}\",\n                \"value\": \"{{PF_Id}}\",\n                \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                \"parentFolderId\": \"{{ParentPF_Id}}\",\n                \"internalChildren\": [\n                  {\n                    \"internalDisabled\": false,\n                    \"internalChecked\": true,\n                    \"internalCollapsed\": false,\n                    \"text\": \"{{ChildPF_title}}\",\n                    \"value\": \"{{ChildPF_Id}}\",\n                    \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                    \"parentFolderId\": \"{{PF_Id}}\",\n                    \"internalChildren\": [\n                      {\n                        \"internalDisabled\": false,\n                        \"internalChecked\": true,\n                        \"internalCollapsed\": false,\n                        \"text\": \"{{SubChildPF_title}}\",\n                        \"value\": \"{{SubChildPF_Id}}\",\n                        \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                        \"parentFolderId\": \"{{ChildPF_Id}}\"\n                      }\n                    ]\n                  }\n                ]\n              }\n            ]\n          }\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    },\n    \"nestedBaselineDefinitions\": [],\n    \"nestedExternalBaselines\": [\n      \"{{ExternalBaselineID_0}}\"\n    ]\n  }\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}","description":"<p>Creates a baseline with external baselines.</p>\n<p>** URL Parameters**</p>\n<p><code>ProjectId/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>Title (Required)</li>\n<li>Description (Required)</li>\n<li>Status (Required) - status field value Id</li>\n<li>Category (Required) - category field value Id</li>\n<li>Flex fields (Rquired/Optional) - set of field Id and values </li>\n<li>Baseline Definition <ul>\n<li>Filter (at least one filter is required) - Filter Criteria for Trackers, Documents, FRS, SCM, Binaries</li>\n<li>External Baseline Definitions (Optional) - Baseline Definition Ids that need to be imported into this definition</li>\n<li>External Baselines (Required) - External Baselines Ids that need to be imported while baseline creation</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"31531aad-2549-4cae-9646-f002ab62408b","name":"Create Baseline with External Baselines","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"External Baselines Test\",\n    \"description\": \"Test External Baselines\",\n    \"status\": \"basefldv1013\",\n    \"category\": \"basefldv1018\",\n    \"flexFields\": [],\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": [\n                {\n                    \"id\": \"tracker1001\",\n                    \"filters\": {}\n                }\n            ],\n            \"documentFolders\": {\n                \"folderIds\": [],\n                \"version\": \"active\",\n                \"filters\": {\n                    \"attribute\": \"\",\n                    \"condition\": \"\",\n                    \"values\": [],\n                    \"isInvalid\": false\n                },\n                \"docTree\": {}\n                }\n            },\n            \"planningFolders\": {\n                \"planningFolderIds\": []\n            },\n            \"frs\": {\n                \"releaseIds\": []\n            },\n            \"scms\": [],\n            \"binaries\": []\n        },\n        \"nestedBaselineDefinitions\": [],\n        \"nestedExternalBaselines\": [\n            \"base1026\"\n        ]\n    }\n"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/baselines/by-project/projects.collabnet_agile_baseline_20"},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1119\",\n    \"title\": \"External Baselines Test\",\n    \"description\": \"Test External Baselines\",\n    \"status\": \"Creation In Progress\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Implicit\",\n    \"category\": \"Release Baseline\",\n    \"projectId\": \"proj1008\",\n    \"createdBy\": \"TeamForge Administrator\",\n    \"modifiedBy\": \"TeamForge Administrator\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"05/20/2020\",\n    \"dateModified\": \"05/20/2020\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        },\n        \"nestedExternalBaselines\": null,\n        \"nestedBaselineDefinitions\": null\n    },\n    \"bDefReferenceId\": 189\n}"}],"_postman_id":"f4c1ec63-e9c0-46db-af99-83469b8ec29c"},{"name":"Get Document Folder Details using Root Document Folder ID","event":[{"listen":"test","script":{"id":"d07ece0d-b62b-4a39-8136-8e616831554b","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"DocParentFolderID\",  jsonData.parentId);"],"type":"text/javascript"}}],"id":"f613faae-1e35-4e50-ac14-b11c1bf29616","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/docman/v1/documentfolders/{{DocRootFolderId}}","description":"<p>Returns the document folder details included in a root document folder</p>\n","urlObject":{"path":["ctfrest","docman","v1","documentfolders","{{DocRootFolderId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"f613faae-1e35-4e50-ac14-b11c1bf29616"},{"name":"Get Baseline Details with External Baselines","event":[{"listen":"test","script":{"id":"d0df65d7-0fae-4d4d-90b2-3ebef13a6954","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var NestedExternalBaselineID = pm.environment.get(\"ExternalBaselineID_0\");","","","pm.test(\"Body matches string - nestedExternalBaselines section\", function () {","    pm.expect(pm.response.text()).to.include('\"nestedExternalBaselines\"');","});","","","pm.test(\"Body matches nested baseline ID which is stored as variable\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+NestedExternalBaselineID+'\"');","});"],"type":"text/javascript"}}],"id":"45af5f65-b3c5-46a9-9dff-b085d2c5ebb1","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{Baseline_ExternalID}}","description":"<p>Returns the details of the baselines that have external baseline included in them</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{Baseline_ExternalID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"45af5f65-b3c5-46a9-9dff-b085d2c5ebb1"},{"name":"Create Baseline Definition with External Baselines","event":[{"listen":"test","script":{"id":"a0b9f5b6-db55-41bd-9262-15620bd22cf7","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"BaselineDef_ExternalID\", jsonData.id);","pm.environment.set(\"BaselineDef_ExternalTitle\", jsonData.title);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"53d98d3a-b00d-4d47-a2e5-392e81f42a75","exec":[""],"type":"text/javascript"}}],"id":"972c4d12-a3a5-4da3-b574-089b3a57d18a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"ExternalBaselineDefinition_2304\",\n  \"description\": \"Creating the baseline definition with external baseline option and nested baseline\",\n  \"category\": \"{{category_value_id}}\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      },\n      \"docTree\": {\n        \"documentFolder\": {\n          \"internalDisabled\": false,\n          \"internalChecked\": false,\n          \"internalCollapsed\": true,\n          \"text\": \"Root Folder\",\n          \"value\": \"{{DocRootFolderId}}\",\n          \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n          \"parentFolderId\": \"{{DocParentFolderID}}\",\n          \"internalChildren\": [\n            {\n              \"internalDisabled\": false,\n              \"internalChecked\": false,\n              \"internalCollapsed\": true,\n              \"text\": \"DocFolder1\",\n              \"value\": \"{{DocFolderId1}}\",\n              \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n              \"parentFolderId\": \"{{DocRootFolderId}}\",\n              \"internalChildren\": [\n                {\n                  \"internalDisabled\": false,\n                  \"internalChecked\": false,\n                  \"internalCollapsed\": true,\n                  \"text\": \" \",\n                  \"value\": \"Place holder\",\n                  \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                  \"parentFolderId\": \"{{DocRootFolderId}}\"\n                }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [],\n      \"pfTree\": {\n        \"planningfolders\": {\n          \"children\": [\n            {\n              \"internalDisabled\": false,\n              \"internalChecked\": false,\n              \"internalCollapsed\": true,\n              \"text\": \"None\",\n              \"value\": \"none\",\n              \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n            },\n            {\n              \"internalDisabled\": false,\n              \"internalChecked\": false,\n              \"internalCollapsed\": true,\n              \"text\": \"{{PF_title}}\",\n              \"value\": \"{{PF_Id}}\",\n              \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n              \"parentFolderId\": \"{{ParentPF_Id}}\",\n              \"internalChildren\": [\n                {\n                  \"internalDisabled\": false,\n                  \"internalChecked\": false,\n                  \"internalCollapsed\": true,\n                  \"text\": \" \",\n                  \"value\": \"Place holder\",\n                  \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                  \"parentFolderId\": \" \"\n                }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    \"frs\": {\n      \"releaseIds\": []\n    },\n    \"scms\": [],\n    \"binaries\": []\n  },\n  \"nestedBaselineDefinitions\": [\n    \"{{baseDefId1}}\"\n  ],\n  \"nestedExternalBaselines\": [\n    \"{{ExternalBaselineID_0}}\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}","description":"<p>Creates a baseline definition with the external baselines included</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"a89304ab-11fa-4e6a-91ad-fc00f3fed22a","name":"Create Baseline Definition with External Baselines","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"ExternalBaselineDefinition_2304\",\n  \"description\": \"Creating the baseline definition with external baseline option and nested baseline\",\n  \"category\": \"{{category_value_id}}\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      },\n      \"docTree\": {\n        \"documentFolder\": {\n          \"internalDisabled\": false,\n          \"internalChecked\": false,\n          \"internalCollapsed\": true,\n          \"text\": \"Root Folder\",\n          \"value\": \"{{DocRootFolderId}}\",\n          \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n          \"parentFolderId\": \"{{DocParentFolderID}}\",\n          \"internalChildren\": [\n            {\n              \"internalDisabled\": false,\n              \"internalChecked\": false,\n              \"internalCollapsed\": true,\n              \"text\": \"DocFolder1\",\n              \"value\": \"{{DocFolderId1}}\",\n              \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n              \"parentFolderId\": \"{{DocRootFolderId}}\",\n              \"internalChildren\": [\n                {\n                  \"internalDisabled\": false,\n                  \"internalChecked\": false,\n                  \"internalCollapsed\": true,\n                  \"text\": \" \",\n                  \"value\": \"Place holder\",\n                  \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                  \"parentFolderId\": \"{{DocRootFolderId}}\"\n                }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [],\n      \"pfTree\": {\n        \"planningfolders\": {\n          \"children\": [\n            {\n              \"internalDisabled\": false,\n              \"internalChecked\": false,\n              \"internalCollapsed\": true,\n              \"text\": \"None\",\n              \"value\": \"none\",\n              \"imgUrl\": \"/sf-images/pngs/folder_closed.png\"\n            },\n            {\n              \"internalDisabled\": false,\n              \"internalChecked\": false,\n              \"internalCollapsed\": true,\n              \"text\": \"{{PF_title}}\",\n              \"value\": \"{{PF_Id}}\",\n              \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n              \"parentFolderId\": \"{{ParentPF_Id}}\",\n              \"internalChildren\": [\n                {\n                  \"internalDisabled\": false,\n                  \"internalChecked\": false,\n                  \"internalCollapsed\": true,\n                  \"text\": \" \",\n                  \"value\": \"Place holder\",\n                  \"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n                  \"parentFolderId\": \" \"\n                }\n              ]\n            }\n          ]\n        }\n      }\n    },\n    \"frs\": {\n      \"releaseIds\": []\n    },\n    \"scms\": [],\n    \"binaries\": []\n  },\n  \"nestedBaselineDefinitions\": [\n    \"{{baseDefId1}}\"\n  ],\n  \"nestedExternalBaselines\": [\n    \"{{ExternalBaselineID_0}}\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Jan 2019 10:24:13 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"378"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"bdef1032\",\n    \"title\": \"ExternalBaselineDefinition_254\",\n    \"description\": \"Creating the baseline definition with external baseline option and nested baseline\",\n    \"category\": \"Release Baseline\",\n    \"type\": \"Explicit\",\n    \"createdBy\": \"user1008\",\n    \"dateCreated\": \"01/17/2019\",\n    \"modifiedBy\": \"user1008\",\n    \"dateModified\": \"01/17/2019\",\n    \"version\": 100,\n    \"projectId\": \"proj1015\"\n}"}],"_postman_id":"972c4d12-a3a5-4da3-b574-089b3a57d18a"},{"name":"Get Baseline Definition Details with External Baselines","event":[{"listen":"test","script":{"id":"b76b5ac0-f7bb-4d3d-b638-0306a5a8d290","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var NestedExternalBaselineID = pm.environment.get(\"ExternalBaselineID_0\");","var BaselineDef1 = pm.environment.get(\"baseDefId1\");","var BaselineDef2 = pm.environment.get(\"baseDefId2\");","","pm.test(\"Body matches string - nestedExternalBaselines section\", function () {","    pm.expect(pm.response.text()).to.include('\"nestedExternalBaselines\"');","});","","","pm.test(\"Body matches nested baseline ID which is stored as variable\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+NestedExternalBaselineID+'\"');","});","","pm.test(\"Body matches string - nestedBaselineDefinitions section\", function () {","    pm.expect(pm.response.text()).to.include('\"nestedBaselineDefinitions\"');","});","","pm.test(\"Body matches nested baseline definition ID which is stored as variable\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+BaselineDef1+'\"');","    pm.expect(pm.response.text()).to.include('\"id\": \"'+BaselineDef2+'\"');","});"],"type":"text/javascript"}}],"id":"c55710fd-04f2-400e-874f-927bb4e21d2e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{BaselineDef_ExternalID}}","description":"<p>Returns the details of the baseline definitions that have external baselines included in them</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{BaselineDef_ExternalID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[],"_postman_id":"c55710fd-04f2-400e-874f-927bb4e21d2e"},{"name":"Get Union of Filter Criteria from Baseline Definition(s)","event":[{"listen":"test","script":{"id":"b1146f16-e9d6-4bfc-8f7a-ff5bfd716841","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var NestedExternalBaselineID = pm.environment.get(\"ExternalBaselineID_0\");","var BaselineDef1 = pm.environment.get(\"baseDefId1\");","var BaselineDef2 = pm.environment.get(\"baseDefId2\");","","pm.test(\"Body matches string - nestedExternalBaselines section\", function () {","    pm.expect(pm.response.text()).to.include('\"nestedExternalBaselines\"');","});","","","pm.test(\"Body matches nested baseline ID which is stored as variable\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+NestedExternalBaselineID+'\"');","});","","pm.test(\"Body matches string - nestedBaselineDefinitions section\", function () {","    pm.expect(pm.response.text()).to.include('\"nestedBaselineDefinitions\"');","});","","pm.test(\"Body matches nested baseline definition ID which is stored as variable\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+BaselineDef1+'\"');","    pm.expect(pm.response.text()).to.include('\"id\": \"'+BaselineDef2+'\"');","});","","var TrackerID_0 = pm.environment.get(\"TrackerID_0\");","var TrackerID_1 = pm.environment.get(\"TrackerID_1\");","var TrackerID_2 = pm.environment.get(\"TrackerID_2\");","var TrackerID_3 = pm.environment.get(\"TrackerID_3\");","var PF_Id = pm.environment.get(\"PF_Id\");","var ChildPF_Id = pm.environment.get(\"ChildPF_Id\");","var DocRootFolderId = pm.environment.get(\"DocRootFolderId\");","var DocFolderId1 = pm.environment.get(\"DocFolderId1\");","var ChildDocFolderId = pm.environment.get(\"ChildDocFolderId\");","","pm.test(\"Body matches to trackers, Documents , FRS, PF that get union together in nested baseline definition and external baseline\", function () {","    pm.expect(pm.response.text()).to.include('\"id\": \"'+TrackerID_0+'\"');","    pm.expect(pm.response.text()).to.include('\"id\": \"'+TrackerID_1+'\"');","    pm.expect(pm.response.text()).to.include('\"id\": \"'+TrackerID_2+'\"');","    pm.expect(pm.response.text()).to.include('\"id\": \"'+TrackerID_3+'\"');","    pm.expect(pm.response.text()).to.include(PF_Id);","    pm.expect(pm.response.text()).to.include(ChildPF_Id);","    pm.expect(pm.response.text()).to.include(DocRootFolderId);","    pm.expect(pm.response.text()).to.include(DocFolderId1);","    pm.expect(pm.response.text()).to.include(ChildDocFolderId);","});"],"type":"text/javascript"}}],"id":"6cc18de1-671a-44f5-b6d4-f837bf0d9288","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/{{BaselineDef_ExternalID}}?projectpath=projects.{{projectname}}&nestedBdefIncluded=true","description":"<p>Returns the union of filter criteria included in a baseline and the filter criteria of baseline definition(s) included in the baseline</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","{{BaselineDef_ExternalID}}"],"host":["{{HostName}}"],"query":[{"key":"projectpath","value":"projects.{{projectname}}"},{"key":"nestedBdefIncluded","value":"true"}],"variable":[]}},"response":[],"_postman_id":"6cc18de1-671a-44f5-b6d4-f837bf0d9288"}],"id":"c627ade9-5ec3-44c9-acd2-2228a80da0e7","description":"<p>Provides the list of APIs used for handling external baselines</p>\n","event":[{"listen":"prerequest","script":{"id":"1a296afd-0118-42b2-a841-4c4923065414","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"2503f3c6-e82d-4631-ad07-1734b4bffc1b","type":"text/javascript","exec":[""]}}],"_postman_id":"c627ade9-5ec3-44c9-acd2-2228a80da0e7"},{"name":"Project Creation Using Project Baselines","item":[{"name":"Create or Update Project Baseline Definition","event":[{"listen":"test","script":{"id":"d9750f2f-0501-455f-8b5f-1fcb3c9c67dd","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"Project_Baseline_def_version\", jsonData.version);",""],"type":"text/javascript"}}],"id":"72f11261-9b16-4e4a-9c2b-096e537a6a82","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{Project_Baseline_def_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Creating Project Baseline Definition\",\n  \"description\": \"Project baseline definition created in the project\",\n  \"filter\": {\n    \"trackers\": [\n      {\n        \"id\": \"{{TrackerID_1}}\",\n        \"filters\": {}\n      }\n    ],\n    \"documentFolders\": {\n      \"folderIds\": [\n        \"{{ChildDocFolderId}}\"\n      ],\n      \"version\": \"active\",\n      \"filters\": {\n        \"attribute\": \"\",\n        \"condition\": \"\",\n        \"values\": [],\n        \"isInvalid\": false\n      }\n    },\n    \"planningFolders\": {\n      \"planningFolderIds\": [\n        \"{{SubChildPF_Id}}\"\n      ],\n      \"pfTree\": {}\n    },\n    \"frs\": {\n      \"releaseIds\": [\n        \"{{ReleaseID1}}\"\n      ]\n    },\n    \"scms\": [],\n    \"binaries\": []\n  },\n  \"nestedBaselineDefinitions\": [\n    \"{{baseDefId1}}\",\n    \"{{baseDefId2}}\"\n  ],\n  \"nestedExternalBaselines\": [\n  \t\"{{ExternalBaselineID_0}}\"\n  \t]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/{{projectId}}/project","description":"<p>Use this API to both create and update project baseline definitions.</p>\n<p>** URL Parameters** </p>\n<p><code>ProjectId/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>Title (Required) </li>\n<li>Description (Required)</li>\n<li>Filter (at least one filter is required) - Filter Criteria for Trackers, Documents, FRS, SCM, Binaries</li>\n<li>External Baseline Definitions (Optional) - Baseline Definition Ids that need to be imported into this definition</li>\n<li>External Baselines (Optional) - External Baselines Ids that need to be imported into this definition</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","definitions","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"1b7039d3-9f19-4d82-9232-091384f6e06d","name":"Update Project Baseline Definition with Multiple Baseline Definitions","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{Project_Baseline_def_version}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Project Baseline Test\",\n    \"description\": \"Project Baseline Test\",\n    \"filter\": {\n        \"trackers\": [\n            {\n                \"id\": \"tracker1002\",\n                \"filters\": {}\n            },\n            {\n                \"id\": \"tracker1003\",\n                \"filters\": {}\n            }\n        ],\n        \"documentFolders\": {\n            \"folderIds\": [\n                \"docf1005\",\n                \"docf1006\",\n                \"docf1007\",\n                \"docf1008\",\n                \"docf1342\",\n                \"docf1009\",\n                \"docf1019\",\n                \"docf1020\",\n                \"docf1022\",\n                \"docf1023\",\n                \"docf1021\",\n                \"docf1027\",\n                \"docf1028\",\n                \"docf1029\",\n                \"docf1034\",\n                \"docf1035\",\n                \"docf1036\",\n                \"docf1047\",\n                \"docf1048\",\n                \"docf1049\",\n                \"docf1056\",\n                \"docf1057\",\n                \"docf1058\",\n                \"docf1067\",\n                \"docf1068\",\n                \"docf1069\",\n                \"docf1074\",\n                \"docf1075\",\n                \"docf1076\",\n                \"docf1081\",\n                \"docf1082\",\n                \"docf1083\",\n                \"docf1089\",\n                \"docf1090\",\n                \"docf1095\",\n                \"docf1096\",\n                \"docf1097\",\n                \"docf1343\",\n                \"docf1344\",\n                \"docf1345\",\n                \"docf1346\",\n                \"docf1347\",\n                \"docf1475\"\n            ],\n            \"version\": \"active\",\n            \"filters\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"isInvalid\": false\n            }\n        },\n        \"planningFolders\": {\n            \"planningFolderIds\": [\n                \"none\",\n                \"plan1001\",\n                \"plan1002\",\n                \"plan1003\",\n                \"plan1004\",\n                \"plan1005\",\n                \"plan1006\"\n            ],\n            \"pfTree\": {}\n        },\n        \"frs\": {\n            \"releaseIds\": [\n                \"rel1002\",\n                \"rel1001\"\n            ]\n        },\n        \"scms\": [\n            {\n                \"id\": \"reps1069\",\n                \"repositoryName\": \"gitrepo\",\n                \"tagId\": \"gittag\"\n            },\n            {\n                \"id\": \"reps1068\",\n                \"repositoryName\": \"svnrepo1\",\n                \"tagId\": \"newfol\"\n            }\n        ],\n        \"binaries\": []\n    },\n    \"nestedBaselineDefinitions\": [\n        \"bdef1129\",\n        \"bdef1123\",\n        \"bdef1115\"\n    ],\n    \"nestedExternalBaselines\": [\n        \"base1019\",\n        \"base1023\"\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/projects.collabnet_agile_baseline_20/project"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"title\": \"Project Baseline Test\",\n\t\"description\": \"Project Baseline Test\",\n\t\"category\": \"Project Baseline\",\n\t\"type\": \"Project\",\n\t\"projectId\": \"proj1008\",\n\t\"version\": 104,\n\t\"createdBy\": \"user1003\",\n\t\"modifiedBy\": \"user1003\",\n\t\"dateCreated\": \"10/09/2019\",\n\t\"dateLastModified\": \"05/20/2020\",\n\t\"filter\": {\n\t\t\"trackers\": [\n\t\t\t{\n\t\t\t\t\"id\": \"tracker1002\",\n\t\t\t\t\"filters\": {},\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1029\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"group\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1030\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1031\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"category\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1032\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"customer\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1033\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"priority\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1034\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"team\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1035\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"assignedTo\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"SfUser\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"user_edit_permission\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1036\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"planningFolder\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"FolderPath\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1043\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"autoSummingPoints\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1044\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"points\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 15\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"tracker1003\",\n\t\t\t\t\"filters\": {},\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1045\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"group\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1046\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1047\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"category\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1048\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"customer\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1049\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"priority\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1050\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"team\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1051\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"assignedTo\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"SfUser\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"user_edit_permission\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1052\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"planningFolder\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"FolderPath\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1055\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"autosumming\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1056\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"estimatedEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 9\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1057\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"remainingEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 10\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1058\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"actualEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": true,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1059\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"autoSummingPoints\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t],\n\t\t\"planningFolders\": {\n\t\t\t\"planningFolderIds\": [\n\t\t\t\t\"none\",\n\t\t\t\t\"plan1001\",\n\t\t\t\t\"plan1002\",\n\t\t\t\t\"plan1003\",\n\t\t\t\t\"plan1004\",\n\t\t\t\t\"plan1005\",\n\t\t\t\t\"plan1006\"\n\t\t\t],\n\t\t\t\"pfTree\": {\n\t\t\t\t\"planningfolders\": {\n\t\t\t\t\t\"text\": \"Root Folder\",\n\t\t\t\t\t\"value\": \"PlanningApp1066\",\n\t\t\t\t\t\"path\": \"planning\",\n\t\t\t\t\t\"parentFolderId\": \"\",\n\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\"imgUrl\": \"\",\n\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 1\",\n\t\t\t\t\t\t\t\"value\": \"plan1001\",\n\t\t\t\t\t\t\t\"path\": \"planning.product_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"PlanningApp1066\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 1\",\n\t\t\t\t\t\t\t\t\t\"value\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1001\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"Iteration 1\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"plan1003\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1.iteration_1\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"Iteration 2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"plan1004\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1.iteration_2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"plan1005\",\n\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1001\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 2\",\n\t\t\t\t\t\t\t\"value\": \"plan1006\",\n\t\t\t\t\t\t\t\"path\": \"planning.product_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"PlanningApp1066\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"totalCount\": 2\n\t\t\t}\n\t\t},\n\t\t\"documentFolders\": {\n\t\t\t\"folderIds\": [\n\t\t\t\t\"docf1005\",\n\t\t\t\t\"docf1006\",\n\t\t\t\t\"docf1007\",\n\t\t\t\t\"docf1008\",\n\t\t\t\t\"docf1342\",\n\t\t\t\t\"docf1009\",\n\t\t\t\t\"docf1019\",\n\t\t\t\t\"docf1020\",\n\t\t\t\t\"docf1022\",\n\t\t\t\t\"docf1023\",\n\t\t\t\t\"docf1021\",\n\t\t\t\t\"docf1027\",\n\t\t\t\t\"docf1028\",\n\t\t\t\t\"docf1029\",\n\t\t\t\t\"docf1034\",\n\t\t\t\t\"docf1035\",\n\t\t\t\t\"docf1036\",\n\t\t\t\t\"docf1047\",\n\t\t\t\t\"docf1048\",\n\t\t\t\t\"docf1049\",\n\t\t\t\t\"docf1056\",\n\t\t\t\t\"docf1057\",\n\t\t\t\t\"docf1058\",\n\t\t\t\t\"docf1067\",\n\t\t\t\t\"docf1068\",\n\t\t\t\t\"docf1069\",\n\t\t\t\t\"docf1074\",\n\t\t\t\t\"docf1075\",\n\t\t\t\t\"docf1076\",\n\t\t\t\t\"docf1081\",\n\t\t\t\t\"docf1082\",\n\t\t\t\t\"docf1083\",\n\t\t\t\t\"docf1089\",\n\t\t\t\t\"docf1090\",\n\t\t\t\t\"docf1095\",\n\t\t\t\t\"docf1096\",\n\t\t\t\t\"docf1097\",\n\t\t\t\t\"docf1343\",\n\t\t\t\t\"docf1344\",\n\t\t\t\t\"docf1345\",\n\t\t\t\t\"docf1346\",\n\t\t\t\t\"docf1347\",\n\t\t\t\t\"docf1475\"\n\t\t\t],\n\t\t\t\"version\": \"active\",\n\t\t\t\"filters\": {\n\t\t\t\t\"FVCondition\": \"3\"\n\t\t\t},\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": -3\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"fild1012\",\n\t\t\t\t\t\"folderId\": \"docf1005\",\n\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"fieldToFieldValues\": {\n\t\t\t\t\"documentFolderId\": \"docf1475\"\n\t\t\t},\n\t\t\t\"docTree\": {\n\t\t\t\t\"documentFolder\": {\n\t\t\t\t\t\"text\": \"Root\",\n\t\t\t\t\t\"value\": \"docf1005\",\n\t\t\t\t\t\"path\": \"docman.root\",\n\t\t\t\t\t\"parentFolderId\": \"DocumentApp1061\",\n\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 1\",\n\t\t\t\t\t\t\t\"value\": \"docf1006\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.product_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 1\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1007\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.release_1\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1008\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.release_2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"vnnmbn\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1342\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.vnnmbn\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 2\",\n\t\t\t\t\t\t\t\"value\": \"docf1009\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.product_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"one\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf2200\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_2.one\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1009\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1019\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1020\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1019\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1022\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2.childfolder2_0\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1019\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1023\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2.childfolder2_0.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1022\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1021\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_0\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1027\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1028\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1027\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1029\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1028\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1034\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.parentfolder2_2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1028\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1035\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.parentfolder2_2.childfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1034\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1036\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.parentfolder2_2.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1035\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1047\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1048\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1047\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1049\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1048\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1056\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1057\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1056\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1058\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1057\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1067\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1068\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1067\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1069\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1068\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1074\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1075\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1074\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1076\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1075\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder21\",\n\t\t\t\t\t\t\t\"value\": \"docf1081\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1082\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1081\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1083\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1082\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1089\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_7\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1090\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_7.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1089\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1095\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1096\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1095\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1097\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1096\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"New Folder under Parent Folder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1343\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.new_folder_under_parent_folder2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fsadfads\",\n\t\t\t\t\t\t\t\"value\": \"docf1344\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fsadfads\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fakdsfjalkds\",\n\t\t\t\t\t\t\t\"value\": \"docf1345\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fakdsfjalkds\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Fads\",\n\t\t\t\t\t\t\t\"value\": \"docf1346\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fads\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fasd\",\n\t\t\t\t\t\t\t\"value\": \"docf1347\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fasd\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Regression test reports\",\n\t\t\t\t\t\t\t\"value\": \"docf1475\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.regression_test_reports\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 5\",\n\t\t\t\t\t\t\t\"value\": \"docf2055\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_5\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 6\",\n\t\t\t\t\t\t\t\"value\": \"docf2056\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_6\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 7\",\n\t\t\t\t\t\t\t\"value\": \"docf2057\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_7\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 9\",\n\t\t\t\t\t\t\t\"value\": \"docf2059\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_9\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 10dacda\",\n\t\t\t\t\t\t\t\"value\": \"docf2060\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_10\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Test Folder 2\",\n\t\t\t\t\t\t\t\"value\": \"docf2078\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.test_folder_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Hello Folder 2\",\n\t\t\t\t\t\t\t\"value\": \"docf2202\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.hello_folder_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Hello Folder 3\",\n\t\t\t\t\t\t\t\"value\": \"docf2203\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.hello_folder_3\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"test empty\",\n\t\t\t\t\t\t\t\"value\": \"docf2206\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.test_empty\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"totalCount\": 27\n\t\t\t}\n\t\t},\n\t\t\"scms\": [\n\t\t\t{\n\t\t\t\t\"id\": \"reps1069\",\n\t\t\t\t\"repositoryName\": \"gitrepo\",\n\t\t\t\t\"tagId\": \"gittag\",\n\t\t\t\t\"repositoryId\": \"\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"reps1068\",\n\t\t\t\t\"repositoryName\": \"svnrepo1\",\n\t\t\t\t\"tagId\": \"newfol\",\n\t\t\t\t\"repositoryId\": \"\"\n\t\t\t}\n\t\t],\n\t\t\"frs\": {\n\t\t\t\"releaseIds\": [\n\t\t\t\t\"rel1002\",\n\t\t\t\t\"rel1001\"\n\t\t\t]\n\t\t},\n\t\t\"binaries\": null\n\t},\n\t\"nestedExternalBaselines\": [\n\t\t{\n\t\t\t\"id\": \"base1019\",\n\t\t\t\"title\": \"comparebaseline_updated\",\n\t\t\t\"projectPath\": \"projects.baselineapiprojectwithdataset175\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"base1023\",\n\t\t\t\"title\": \"ProjectBaseline_267_updated\",\n\t\t\t\"projectPath\": \"projects.baselineapiprojectwithdataset175\"\n\t\t}\n\t],\n\t\"nestedBaselineDefinitions\": [\n\t\t{\n\t\t\t\"id\": \"bdef1115\",\n\t\t\t\"title\": \"test frs trac\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"bdef1123\",\n\t\t\t\"title\": \"mid section\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"bdef1129\",\n\t\t\t\"title\": \"first with last\"\n\t\t}\n\t]\n}"},{"id":"fa633073-1a1b-4e0e-91cb-12bba77b52a6","name":"Update Project Baseline Definition By Including Filters and External Baselines","originalRequest":{"method":"PUT","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{Project_Baseline_def_version}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Project Baseline Test\",\n    \"description\": \"Project Baseline Test\",\n    \"filter\": {\n        \"trackers\": [\n            {\n                \"id\": \"tracker1002\",\n                \"filters\": {}\n            },\n            {\n                \"id\": \"tracker1003\",\n                \"filters\": {}\n            }\n        ],\n        \"documentFolders\": {\n            \"folderIds\": [\n                \"docf1005\",\n                \"docf1006\",\n                \"docf1007\",\n                \"docf1008\",\n                \"docf1342\",\n                \"docf1009\",\n                \"docf1019\",\n                \"docf1020\",\n                \"docf1022\",\n                \"docf1023\",\n                \"docf1021\",\n                \"docf1027\",\n                \"docf1028\",\n                \"docf1029\",\n                \"docf1034\",\n                \"docf1035\",\n                \"docf1036\",\n                \"docf1047\",\n                \"docf1048\",\n                \"docf1049\",\n                \"docf1056\",\n                \"docf1057\",\n                \"docf1058\",\n                \"docf1067\",\n                \"docf1068\",\n                \"docf1069\",\n                \"docf1074\",\n                \"docf1075\",\n                \"docf1076\",\n                \"docf1081\",\n                \"docf1082\",\n                \"docf1083\",\n                \"docf1089\",\n                \"docf1090\",\n                \"docf1095\",\n                \"docf1096\",\n                \"docf1097\",\n                \"docf1343\",\n                \"docf1344\",\n                \"docf1345\",\n                \"docf1346\",\n                \"docf1347\",\n                \"docf1475\"\n            ],\n            \"version\": \"active\",\n            \"filters\": {\n                \"attribute\": \"\",\n                \"condition\": \"\",\n                \"values\": [],\n                \"isInvalid\": false\n            }\n        },\n        \"planningFolders\": {\n            \"planningFolderIds\": [\n                \"none\",\n                \"plan1001\",\n                \"plan1002\",\n                \"plan1003\",\n                \"plan1004\",\n                \"plan1005\",\n                \"plan1006\"\n            ],\n            \"pfTree\": {}\n        },\n        \"frs\": {\n            \"releaseIds\": [\n                \"rel1002\",\n                \"rel1001\"\n            ]\n        },\n        \"scms\": [\n            {\n                \"id\": \"reps1069\",\n                \"repositoryName\": \"gitrepo\",\n                \"tagId\": \"gittag\"\n            },\n            {\n                \"id\": \"reps1068\",\n                \"repositoryName\": \"svnrepo1\",\n                \"tagId\": \"newfol\"\n            }\n        ],\n        \"binaries\": []\n    },\n    \"nestedBaselineDefinitions\": [],\n    \"nestedExternalBaselines\": [\n        \"base1019\",\n        \"base1023\"\n    ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/definitions/by-project/projects.collabnet_agile_baseline_20/project"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"title\": \"Project Baseline Test\",\n\t\"description\": \"Project Baseline Test\",\n\t\"category\": \"Project Baseline\",\n\t\"type\": \"Project\",\n\t\"projectId\": \"proj1008\",\n\t\"version\": 103,\n\t\"createdBy\": \"user1003\",\n\t\"modifiedBy\": \"user1003\",\n\t\"dateCreated\": \"10/09/2019\",\n\t\"dateLastModified\": \"05/20/2020\",\n\t\"filter\": {\n\t\t\"trackers\": [\n\t\t\t{\n\t\t\t\t\"id\": \"tracker1002\",\n\t\t\t\t\"filters\": {},\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1029\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"group\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1030\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1031\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"category\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1032\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"customer\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1033\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"priority\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1034\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"team\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1035\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"assignedTo\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"SfUser\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"user_edit_permission\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1036\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"planningFolder\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"FolderPath\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1043\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"autoSummingPoints\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1044\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"points\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 15\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"tracker1003\",\n\t\t\t\t\"filters\": {},\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1045\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"group\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1046\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1047\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"category\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1048\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"customer\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1049\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"priority\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1050\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"team\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1051\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"assignedTo\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"SfUser\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"user_edit_permission\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1052\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"planningFolder\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"FolderPath\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1055\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"autosumming\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1056\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"estimatedEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 9\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1057\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"remainingEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 10\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1058\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"actualEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": true,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1059\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"autoSummingPoints\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t],\n\t\t\"planningFolders\": {\n\t\t\t\"planningFolderIds\": [\n\t\t\t\t\"none\",\n\t\t\t\t\"plan1001\",\n\t\t\t\t\"plan1002\",\n\t\t\t\t\"plan1003\",\n\t\t\t\t\"plan1004\",\n\t\t\t\t\"plan1005\",\n\t\t\t\t\"plan1006\"\n\t\t\t],\n\t\t\t\"pfTree\": {\n\t\t\t\t\"planningfolders\": {\n\t\t\t\t\t\"text\": \"Root Folder\",\n\t\t\t\t\t\"value\": \"PlanningApp1066\",\n\t\t\t\t\t\"path\": \"planning\",\n\t\t\t\t\t\"parentFolderId\": \"\",\n\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\"imgUrl\": \"\",\n\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 1\",\n\t\t\t\t\t\t\t\"value\": \"plan1001\",\n\t\t\t\t\t\t\t\"path\": \"planning.product_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"PlanningApp1066\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 1\",\n\t\t\t\t\t\t\t\t\t\"value\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1001\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"Iteration 1\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"plan1003\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1.iteration_1\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"Iteration 2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"plan1004\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1.iteration_2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"plan1005\",\n\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1001\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 2\",\n\t\t\t\t\t\t\t\"value\": \"plan1006\",\n\t\t\t\t\t\t\t\"path\": \"planning.product_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"PlanningApp1066\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"totalCount\": 2\n\t\t\t}\n\t\t},\n\t\t\"documentFolders\": {\n\t\t\t\"folderIds\": [\n\t\t\t\t\"docf1005\",\n\t\t\t\t\"docf1006\",\n\t\t\t\t\"docf1007\",\n\t\t\t\t\"docf1008\",\n\t\t\t\t\"docf1342\",\n\t\t\t\t\"docf1009\",\n\t\t\t\t\"docf1019\",\n\t\t\t\t\"docf1020\",\n\t\t\t\t\"docf1022\",\n\t\t\t\t\"docf1023\",\n\t\t\t\t\"docf1021\",\n\t\t\t\t\"docf1027\",\n\t\t\t\t\"docf1028\",\n\t\t\t\t\"docf1029\",\n\t\t\t\t\"docf1034\",\n\t\t\t\t\"docf1035\",\n\t\t\t\t\"docf1036\",\n\t\t\t\t\"docf1047\",\n\t\t\t\t\"docf1048\",\n\t\t\t\t\"docf1049\",\n\t\t\t\t\"docf1056\",\n\t\t\t\t\"docf1057\",\n\t\t\t\t\"docf1058\",\n\t\t\t\t\"docf1067\",\n\t\t\t\t\"docf1068\",\n\t\t\t\t\"docf1069\",\n\t\t\t\t\"docf1074\",\n\t\t\t\t\"docf1075\",\n\t\t\t\t\"docf1076\",\n\t\t\t\t\"docf1081\",\n\t\t\t\t\"docf1082\",\n\t\t\t\t\"docf1083\",\n\t\t\t\t\"docf1089\",\n\t\t\t\t\"docf1090\",\n\t\t\t\t\"docf1095\",\n\t\t\t\t\"docf1096\",\n\t\t\t\t\"docf1097\",\n\t\t\t\t\"docf1343\",\n\t\t\t\t\"docf1344\",\n\t\t\t\t\"docf1345\",\n\t\t\t\t\"docf1346\",\n\t\t\t\t\"docf1347\",\n\t\t\t\t\"docf1475\"\n\t\t\t],\n\t\t\t\"version\": \"active\",\n\t\t\t\"filters\": {\n\t\t\t\t\"FVCondition\": \"3\"\n\t\t\t},\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": -3\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"fild1012\",\n\t\t\t\t\t\"folderId\": \"docf1005\",\n\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"fieldToFieldValues\": {\n\t\t\t\t\"documentFolderId\": \"docf1475\"\n\t\t\t},\n\t\t\t\"docTree\": {\n\t\t\t\t\"documentFolder\": {\n\t\t\t\t\t\"text\": \"Root\",\n\t\t\t\t\t\"value\": \"docf1005\",\n\t\t\t\t\t\"path\": \"docman.root\",\n\t\t\t\t\t\"parentFolderId\": \"DocumentApp1061\",\n\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 1\",\n\t\t\t\t\t\t\t\"value\": \"docf1006\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.product_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 1\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1007\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.release_1\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1008\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.release_2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"vnnmbn\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1342\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.vnnmbn\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 2\",\n\t\t\t\t\t\t\t\"value\": \"docf1009\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.product_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"one\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf2200\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_2.one\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1009\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1019\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1020\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1019\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1022\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2.childfolder2_0\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1019\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1023\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2.childfolder2_0.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1022\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1021\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_0\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1027\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1028\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1027\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1029\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1028\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1034\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.parentfolder2_2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1028\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1035\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.parentfolder2_2.childfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1034\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1036\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1.childfolder2.parentfolder2_2.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1035\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1047\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1048\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1047\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1049\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1048\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1056\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1057\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1056\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1058\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1057\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1067\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1068\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1067\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1069\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1068\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1074\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1075\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1074\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1076\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1075\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder21\",\n\t\t\t\t\t\t\t\"value\": \"docf1081\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1082\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1081\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1083\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1082\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1089\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_7\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1090\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_7.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1089\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1095\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"ChildFolder2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1096\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8.childfolder2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1095\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"SubChildFolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"docf1097\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8.childfolder2.subchildfolder2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1096\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"New Folder under Parent Folder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1343\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.new_folder_under_parent_folder2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fsadfads\",\n\t\t\t\t\t\t\t\"value\": \"docf1344\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fsadfads\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fakdsfjalkds\",\n\t\t\t\t\t\t\t\"value\": \"docf1345\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fakdsfjalkds\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Fads\",\n\t\t\t\t\t\t\t\"value\": \"docf1346\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fads\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fasd\",\n\t\t\t\t\t\t\t\"value\": \"docf1347\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fasd\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Regression test reports\",\n\t\t\t\t\t\t\t\"value\": \"docf1475\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.regression_test_reports\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 5\",\n\t\t\t\t\t\t\t\"value\": \"docf2055\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_5\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 6\",\n\t\t\t\t\t\t\t\"value\": \"docf2056\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_6\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 7\",\n\t\t\t\t\t\t\t\"value\": \"docf2057\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_7\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 9\",\n\t\t\t\t\t\t\t\"value\": \"docf2059\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_9\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 10dacda\",\n\t\t\t\t\t\t\t\"value\": \"docf2060\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_10\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Test Folder 2\",\n\t\t\t\t\t\t\t\"value\": \"docf2078\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.test_folder_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Hello Folder 2\",\n\t\t\t\t\t\t\t\"value\": \"docf2202\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.hello_folder_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Hello Folder 3\",\n\t\t\t\t\t\t\t\"value\": \"docf2203\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.hello_folder_3\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"test empty\",\n\t\t\t\t\t\t\t\"value\": \"docf2206\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.test_empty\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"totalCount\": 27\n\t\t\t}\n\t\t},\n\t\t\"scms\": [\n\t\t\t{\n\t\t\t\t\"id\": \"reps1069\",\n\t\t\t\t\"repositoryName\": \"gitrepo\",\n\t\t\t\t\"tagId\": \"gittag\",\n\t\t\t\t\"repositoryId\": \"\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"reps1068\",\n\t\t\t\t\"repositoryName\": \"svnrepo1\",\n\t\t\t\t\"tagId\": \"newfol\",\n\t\t\t\t\"repositoryId\": \"\"\n\t\t\t}\n\t\t],\n\t\t\"frs\": {\n\t\t\t\"releaseIds\": [\n\t\t\t\t\"rel1002\",\n\t\t\t\t\"rel1001\"\n\t\t\t]\n\t\t},\n\t\t\"binaries\": null\n\t},\n\t\"nestedExternalBaselines\": [\n\t\t{\n\t\t\t\"id\": \"base1019\",\n\t\t\t\"title\": \"comparebaseline_updated\",\n\t\t\t\"projectPath\": \"projects.baselineapiprojectwithdataset175\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"base1023\",\n\t\t\t\"title\": \"ProjectBaseline_267_updated\",\n\t\t\t\"projectPath\": \"projects.baselineapiprojectwithdataset175\"\n\t\t}\n\t],\n\t\"nestedBaselineDefinitions\": null\n}"}],"_postman_id":"72f11261-9b16-4e4a-9c2b-096e537a6a82"},{"name":"Create Project Baseline","event":[{"listen":"test","script":{"id":"97be66a9-19ad-46b5-9753-e0dc23888e96","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","pm.environment.set(\"NewProjectBaseline_ID\", jsonData.id);","pm.environment.set(\"NewProjectBaseline_version\", jsonData.version);"],"type":"text/javascript"}}],"id":"93e89d75-fa80-4f65-b4f1-a59aceec6e04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Project baseline233\",\n  \"description\": \"Baseline with current project using project definition\",\n  \"status\": \"{{status_submitted_Id}}\",\n  \"category\": \"\",\n  \"flexFields\": [\n    {\n      \"id\": \"{{Attribute_DropDown_Id}}\",\n      \"values\": [\n        \"{{Attribute_DropDown_value0}}\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Date_Id}}\",\n      \"values\": [\n        \"2018-10-31\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiline_Id}}\",\n      \"values\": [\n        \"testing \\nMultiline\\nText\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Singleline_Id}}\",\n      \"values\": [\n        \"singlelinetext\"\n      ]\n    },\n    {\n      \"id\": \"{{Attribute_Multiselect_Id}}\",\n      \"values\": [\n        \"{{Attribute_Multiselect_value1}}\"\n      ]\n    }\n  ],\n  \"baselineDefinition\": {\n    \"filter\": {\n      \"trackers\": [\n        {\n          \"id\": \"{{TrackerID_1}}\",\n          \"filters\": {}\n        }\n      ],\n      \"documentFolders\": {\n        \"folderIds\": [\n          \"{{ChildDocFolderId}}\"\n        ],\n        \"version\": \"active\",\n        \"filters\": {},\n        \"docTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"planningFolders\": {\n        \"planningFolderIds\": [\n          \"{{SubChildPF_Id}}\"\n        ],\n        \"pfTree\": {\n          \"totalCount\": 1\n        }\n      },\n      \"frs\": {\n        \"releaseIds\": [\n          \"{{ReleaseID1}}\"\n        ]\n      },\n      \"scms\": [],\n      \"binaries\": []\n    },\n  \"nestedBaselineDefinitions\": [\n    \"{{baseDefId1}}\",\n    \"{{baseDefId2}}\"\n  ],\n  \"nestedExternalBaselines\": [\n  \t\"{{ExternalBaselineID_0}}\"\n  \t]\n}\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/by-project/{{projectId}}/project","description":"<p>Creates Project baselines.</p>\n<p><strong>URL Parameters</strong></p>\n<p><code>ProjectId/Path</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li>Title (Required)</li>\n<li>Description (Required)</li>\n<li>Status (Required) - status field value Id</li>\n<li>Category (Required) - category field value Id</li>\n<li>Flex fields (Rquired/Optional) - set of field Id and values </li>\n<li>Baseline Definition - <ul>\n<li>Filter (at least one filter is required) - Filter Criteria for Trackers, Documents, FRS, SCM, Binaries</li>\n<li>External Baseline Definitions (Optional) - Baseline Definition Ids that need to be imported into this definition</li>\n<li>External Baselines (Optional) - External Baselines Ids that need to be imported into this definition</li>\n</ul>\n</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","by-project","{{projectId}}","project"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"2b3e11cc-8fe9-463c-a853-2d2224808942","name":"Create Project Baseline ","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Test Project Baseline1\",\n    \"description\": \"Test Project Baseline\",\n    \"status\": \"basefldv1013\",\n    \"category\": \"\",\n    \"flexFields\": [],\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": [\n                {\n                    \"id\": \"tracker1002\",\n                    \"filters\": {},\n                    \"fields\": [\n                        {\n                            \"id\": \"\",\n                            \"folderId\": \"\",\n                            \"name\": \"title\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 0,\n                            \"displayLines\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"valueType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayOrder\": -2\n                        },\n                        {\n                            \"id\": \"\",\n                            \"folderId\": \"\",\n                            \"name\": \"description\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 0,\n                            \"displayLines\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"valueType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayOrder\": -1\n                        },\n                        {\n                            \"id\": \"fild1029\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"group\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 0\n                        },\n                        {\n                            \"id\": \"fild1030\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"status\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": true,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 1\n                        },\n                        {\n                            \"id\": \"fild1031\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"category\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 2\n                        },\n                        {\n                            \"id\": \"fild1032\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"customer\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 3\n                        },\n                        {\n                            \"id\": \"fild1033\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"priority\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 4\n                        },\n                        {\n                            \"id\": \"fild1034\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"team\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"FOLDER\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 5\n                        },\n                        {\n                            \"id\": \"fild1035\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"assignedTo\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"SfUser\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"user_edit_permission\",\n                                \"Valid\": true\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 6\n                        },\n                        {\n                            \"id\": \"fild1036\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"planningFolder\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"FOLDER\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"FolderPath\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 7\n                        },\n                        {\n                            \"id\": \"fild1043\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"autoSummingPoints\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Boolean\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 14\n                        },\n                        {\n                            \"id\": \"fild1044\",\n                            \"folderId\": \"tracker1002\",\n                            \"name\": \"points\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 5,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Integer\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 15\n                        }\n                    ]\n                },\n                {\n                    \"id\": \"tracker1003\",\n                    \"filters\": {},\n                    \"fields\": [\n                        {\n                            \"id\": \"\",\n                            \"folderId\": \"\",\n                            \"name\": \"title\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 0,\n                            \"displayLines\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"valueType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayOrder\": -2\n                        },\n                        {\n                            \"id\": \"\",\n                            \"folderId\": \"\",\n                            \"name\": \"description\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 0,\n                            \"displayLines\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"valueType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayOrder\": -1\n                        },\n                        {\n                            \"id\": \"fild1045\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"group\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 0\n                        },\n                        {\n                            \"id\": \"fild1046\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"status\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": true,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 1\n                        },\n                        {\n                            \"id\": \"fild1047\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"category\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 2\n                        },\n                        {\n                            \"id\": \"fild1048\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"customer\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 3\n                        },\n                        {\n                            \"id\": \"fild1049\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"priority\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 4\n                        },\n                        {\n                            \"id\": \"fild1050\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"team\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"FOLDER\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"String\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 5\n                        },\n                        {\n                            \"id\": \"fild1051\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"assignedTo\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"SfUser\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"user_edit_permission\",\n                                \"Valid\": true\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 6\n                        },\n                        {\n                            \"id\": \"fild1052\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"planningFolder\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"FOLDER\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"FolderPath\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 7\n                        },\n                        {\n                            \"id\": \"fild1055\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"autosumming\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Boolean\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 8\n                        },\n                        {\n                            \"id\": \"fild1056\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"estimatedEffort\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 5,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Integer\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 9\n                        },\n                        {\n                            \"id\": \"fild1057\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"remainingEffort\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 5,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Integer\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 10\n                        },\n                        {\n                            \"id\": \"fild1058\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"actualEffort\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"TEXT\",\n                            \"displaySize\": 5,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Integer\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": true,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 13\n                        },\n                        {\n                            \"id\": \"fild1059\",\n                            \"folderId\": \"tracker1003\",\n                            \"name\": \"autoSummingPoints\",\n                            \"memberName\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"displayType\": \"DROPDOWN\",\n                            \"displaySize\": 1,\n                            \"displayLines\": {\n                                \"String\": \"1\",\n                                \"Valid\": true\n                            },\n                            \"valueType\": {\n                                \"String\": \"Boolean\",\n                                \"Valid\": true\n                            },\n                            \"isRequired\": false,\n                            \"isDisabled\": false,\n                            \"isHiddenOnCreate\": false,\n                            \"defaultTextValue\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"userFilter\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"helpText\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"parentFieldId\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"pattern\": {\n                                \"String\": \"\",\n                                \"Valid\": false\n                            },\n                            \"fieldType\": {\n                                \"String\": \"customizable\",\n                                \"Valid\": true\n                            },\n                            \"displayOrder\": 14\n                        }\n                    ]\n                }\n            ],\n            \"documentFolders\": {\n                \"folderIds\": [\n                    \"docf1007\"\n                ],\n                \"version\": \"active\",\n                \"filters\": {},\n                     \n                    \"totalCount\": 27\n                }\n            },\n            \"planningFolders\": {\n                \"planningFolderIds\": [\n                    \"none\",\n                    \"plan1001\",\n                    \"plan1002\",\n                    \"plan1003\",\n                    \"plan1004\",\n                    \"plan1005\",\n                    \"plan1006\"\n                ],\n                    \"totalCount\": 2\n                \n            },\n            \"frs\": {\n                \"releaseIds\": [\n                    \"rel1002\",\n                    \"rel1001\"\n                ]\n            },\n            \"scms\": [\n                {\n                    \"id\": \"reps1069\",\n                    \"repositoryName\": \"gitrepo\",\n                    \"tagId\": \"gittag\"\n                }\n            ],\n            \"binaries\": []\n        },\n        \"nestedExternalBaselines\": [\n            \"base1019\",\n            \"base1023\"\n        ]\n    }\n"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/baselines/by-project/projects.collabnet_agile_baseline_20/project"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 17 Jan 2019 10:54:17 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"1694"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1121\",\n    \"title\": \"Test Project Baseline1\",\n    \"description\": \"Test Project Baseline\",\n    \"status\": \"Creation In Progress\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Project\",\n    \"category\": \"Project Baseline\",\n    \"projectId\": \"proj1008\",\n    \"createdBy\": \"TeamForge Administrator\",\n    \"modifiedBy\": \"TeamForge Administrator\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"05/20/2020\",\n    \"dateModified\": \"05/20/2020\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        },\n        \"nestedExternalBaselines\": null,\n        \"nestedBaselineDefinitions\": null\n    },\n    \"bDefReferenceId\": 195\n}"}],"_postman_id":"93e89d75-fa80-4f65-b4f1-a59aceec6e04"},{"name":"Update Project Baseline Status","event":[{"listen":"test","script":{"id":"f8bc56d3-5dd3-4683-9e7a-ebaaf083886f","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","pm.test(\"Body matches string - Baseline updated successfully\", function () {","    pm.expect(pm.response.text()).to.include('\"Baseline Updated successfully.\"');","});"],"type":"text/javascript"}}],"id":"24c64a15-e1e8-42b3-8d94-d122e5d502de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{NewProjectBaseline_version}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"ProjectBaseline_233_updated\",\n  \"description\": \"Updating the project baseline to Approve status\",\n  \"status\": \"{{status_approve_Id}}\",\n  \"comment\": \"Setting the status from submitted to approve based on status transistion. \"\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{NewProjectBaseline_ID}}","description":"<p>Updates the project baseline status</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>ProjectBaselineId</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li><code>status</code> (Required) - Status Field Value Id</li>\n<li><code>Comment</code> (Optional) - status comment</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{NewProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"bbd24646-3262-4689-8957-99e228565317","name":"Update Project Baseline Status","originalRequest":{"method":"PATCH","header":[{"key":"Content-Type","value":"application/json"},{"key":"Authorization","value":"{{Token}}"},{"key":"If-Match","type":"text","value":"{{NewProjectBaseline_version}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Test Project Baseline\",\n    \"description\": \"Test Project Baseline\",\n    \"status\": \"basefldv1014\",\n    \"flexFields\": [],\n    \"comment\": \"Approve Baseline\"\n}"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/baselines/base1120/project"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1121\",\n    \"title\": \"Test Project Baseline1\",\n    \"description\": \"Test Project Baseline\",\n    \"status\": \"Approved\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Project\",\n    \"category\": \"Project Baseline\",\n    \"projectId\": \"proj1008\",\n    \"createdBy\": \"TeamForge Administrator\",\n    \"modifiedBy\": \"TeamForge Administrator\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"05/20/2020\",\n    \"dateModified\": \"05/20/2020\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        },\n        \"nestedExternalBaselines\": null,\n        \"nestedBaselineDefinitions\": null\n    },\n    \"bDefReferenceId\": 195\n}"}],"_postman_id":"24c64a15-e1e8-42b3-8d94-d122e5d502de"},{"name":"Get Project Baseline Details","event":[{"listen":"test","script":{"id":"8f9dfcb9-faf7-4e92-be5a-225658fa9d54","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"922c5916-9f5e-4b3d-8303-aa604e5fe1de","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/baselines/{{NewProjectBaseline_ID}}","description":"<p>Gets the project baseline details</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>Project Baseline Id</code> (Required)</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","baselines","{{NewProjectBaseline_ID}}"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"b158ea81-d497-4c89-854c-987fc8b6fa44","name":"Get Project Baseline Details","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/baselines/base1121"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"id\": \"base1121\",\n    \"title\": \"Test Project Baseline1\",\n    \"description\": \"Test Project Baseline\",\n    \"status\": \"Creation In Progress\",\n    \"metastatusValue\": \"\",\n    \"type\": \"Project\",\n    \"category\": \"Project Baseline\",\n    \"projectId\": \"proj1008\",\n    \"createdBy\": \"TeamForge Administrator\",\n    \"modifiedBy\": \"TeamForge Administrator\",\n    \"approvedBy\": \"\",\n    \"flexFields\": [],\n    \"dateCreated\": \"05/20/2020\",\n    \"dateModified\": \"05/20/2020\",\n    \"dateApproved\": \"\",\n    \"version\": 100,\n    \"baselineDefinition\": {\n        \"filter\": {\n            \"trackers\": null,\n            \"planningFolders\": {\n                \"planningFolderIds\": null,\n                \"pfTree\": {\n                    \"planningfolders\": null\n                }\n            },\n            \"documentFolders\": {\n                \"folderIds\": null,\n                \"version\": \"\",\n                \"filters\": {},\n                \"fields\": null,\n                \"docTree\": {\n                    \"documentFolder\": null,\n                    \"totalCount\": 0\n                }\n            },\n            \"scms\": null,\n            \"frs\": {\n                \"releaseIds\": null\n            },\n            \"binaries\": null\n        },\n        \"nestedExternalBaselines\": null,\n        \"nestedBaselineDefinitions\": null\n    },\n    \"bDefReferenceId\": 195\n}"}],"_postman_id":"922c5916-9f5e-4b3d-8303-aa604e5fe1de"},{"name":"Get Project Baseline Definition","id":"88438eec-a8e9-48c9-a872-b26e29a434d3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Gets the Project baseline definition.</p>\n<p>** URL Parameters** </p>\n<ul>\n<li><code>Project Id/Path</code> (Required)</li>\n<li><code>nestedBdefIncluded</code> (Required) - false</li>\n</ul>\n","urlObject":{"query":[],"variable":[]}},"response":[{"id":"0ac23737-4f9a-4f41-8aab-406736dd80f5","name":"Get Project Baseline Definition","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"{{token}}","type":"text"}],"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/definitions/by-project/projects.collabnet_agile_baseline_20/project?nestedBdefIncluded=false","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","definitions","by-project","projects.collabnet_agile_baseline_20","project"],"query":[{"key":"nestedBdefIncluded","value":"false"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"title\": \"Project Baseline Test\",\n\t\"description\": \"Project Baseline Test\",\n\t\"category\": \"Project Baseline\",\n\t\"type\": \"Project\",\n\t\"projectId\": \"proj1008\",\n\t\"version\": 106,\n\t\"createdBy\": \"user1003\",\n\t\"modifiedBy\": \"user1003\",\n\t\"dateCreated\": \"10/09/2019\",\n\t\"dateLastModified\": \"05/20/2020\",\n\t\"filter\": {\n\t\t\"trackers\": [\n\t\t\t{\n\t\t\t\t\"id\": \"tracker1002\",\n\t\t\t\t\"filters\": {},\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1029\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"group\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1030\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1031\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"category\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1032\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"customer\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1033\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"priority\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1034\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"team\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1035\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"assignedTo\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"SfUser\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"user_edit_permission\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1036\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"planningFolder\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"FolderPath\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1043\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"autoSummingPoints\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 14\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1044\",\n\t\t\t\t\t\t\"folderId\": \"tracker1002\",\n\t\t\t\t\t\t\"name\": \"points\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 15\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"tracker1003\",\n\t\t\t\t\"filters\": {},\n\t\t\t\t\"fields\": [\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1045\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"group\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1046\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 1\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1047\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"category\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 2\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1048\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"customer\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 3\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1049\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"priority\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 4\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1050\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"team\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 5\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1051\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"assignedTo\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"SfUser\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"user_edit_permission\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 6\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1052\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"planningFolder\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"FOLDER\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"FolderPath\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 7\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1055\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"autosumming\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 8\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1056\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"estimatedEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 9\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1057\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"remainingEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 10\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1058\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"actualEffort\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\t\"displaySize\": 5,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Integer\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": true,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 13\n\t\t\t\t\t},\n\t\t\t\t\t{\n\t\t\t\t\t\t\"id\": \"fild1059\",\n\t\t\t\t\t\t\"folderId\": \"tracker1003\",\n\t\t\t\t\t\t\"name\": \"autoSummingPoints\",\n\t\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\t\"String\": \"Boolean\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\t\"String\": \"customizable\",\n\t\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t\t},\n\t\t\t\t\t\t\"displayOrder\": 14\n\t\t\t\t\t}\n\t\t\t\t]\n\t\t\t}\n\t\t],\n\t\t\"planningFolders\": {\n\t\t\t\"planningFolderIds\": [\n\t\t\t\t\"none\",\n\t\t\t\t\"plan1001\",\n\t\t\t\t\"plan1002\",\n\t\t\t\t\"plan1003\",\n\t\t\t\t\"plan1004\",\n\t\t\t\t\"plan1005\",\n\t\t\t\t\"plan1006\"\n\t\t\t],\n\t\t\t\"pfTree\": {\n\t\t\t\t\"planningfolders\": {\n\t\t\t\t\t\"text\": \"Root Folder\",\n\t\t\t\t\t\"value\": \"PlanningApp1066\",\n\t\t\t\t\t\"path\": \"planning\",\n\t\t\t\t\t\"parentFolderId\": \"\",\n\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\"imgUrl\": \"\",\n\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 1\",\n\t\t\t\t\t\t\t\"value\": \"plan1001\",\n\t\t\t\t\t\t\t\"path\": \"planning.product_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"PlanningApp1066\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 1\",\n\t\t\t\t\t\t\t\t\t\"value\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1001\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"Iteration 1\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"plan1003\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1.iteration_1\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\t\t\"text\": \"Iteration 2\",\n\t\t\t\t\t\t\t\t\t\t\t\"value\": \"plan1004\",\n\t\t\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_1.iteration_2\",\n\t\t\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1002\",\n\t\t\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t]\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"plan1005\",\n\t\t\t\t\t\t\t\t\t\"path\": \"planning.product_1.release_2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"plan1001\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 2\",\n\t\t\t\t\t\t\t\"value\": \"plan1006\",\n\t\t\t\t\t\t\t\"path\": \"planning.product_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"PlanningApp1066\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"totalCount\": 2\n\t\t\t}\n\t\t},\n\t\t\"documentFolders\": {\n\t\t\t\"folderIds\": [\n\t\t\t\t\"docf1007\"\n\t\t\t],\n\t\t\t\"version\": \"active\",\n\t\t\t\"filters\": {},\n\t\t\t\"fields\": [\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\"name\": \"title\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": -3\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"\",\n\t\t\t\t\t\"folderId\": \"\",\n\t\t\t\t\t\"name\": \"description\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"TEXT\",\n\t\t\t\t\t\"displaySize\": 0,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": false,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": 0\n\t\t\t\t},\n\t\t\t\t{\n\t\t\t\t\t\"id\": \"fild1012\",\n\t\t\t\t\t\"folderId\": \"docf1005\",\n\t\t\t\t\t\"name\": \"status\",\n\t\t\t\t\t\"memberName\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayType\": \"DROPDOWN\",\n\t\t\t\t\t\"displaySize\": 1,\n\t\t\t\t\t\"displayLines\": {\n\t\t\t\t\t\t\"String\": \"1\",\n\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t},\n\t\t\t\t\t\"valueType\": {\n\t\t\t\t\t\t\"String\": \"String\",\n\t\t\t\t\t\t\"Valid\": true\n\t\t\t\t\t},\n\t\t\t\t\t\"isRequired\": true,\n\t\t\t\t\t\"isDisabled\": false,\n\t\t\t\t\t\"isHiddenOnCreate\": false,\n\t\t\t\t\t\"defaultTextValue\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"userFilter\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"helpText\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"parentFieldId\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"pattern\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"fieldType\": {\n\t\t\t\t\t\t\"String\": \"\",\n\t\t\t\t\t\t\"Valid\": false\n\t\t\t\t\t},\n\t\t\t\t\t\"displayOrder\": -1\n\t\t\t\t}\n\t\t\t],\n\t\t\t\"fieldToFieldValues\": {\n\t\t\t\t\"documentFolderId\": \"docf1007\"\n\t\t\t},\n\t\t\t\"docTree\": {\n\t\t\t\t\"documentFolder\": {\n\t\t\t\t\t\"text\": \"Root\",\n\t\t\t\t\t\"value\": \"docf1005\",\n\t\t\t\t\t\"path\": \"docman.root\",\n\t\t\t\t\t\"parentFolderId\": \"DocumentApp1061\",\n\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 1\",\n\t\t\t\t\t\t\t\"value\": \"docf1006\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.product_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": [\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 1\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1007\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.release_1\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": true,\n\t\t\t\t\t\t\t\t\t\"collapsed\": false,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"Release 2\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1008\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.release_2\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t},\n\t\t\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\t\t\"text\": \"vnnmbn\",\n\t\t\t\t\t\t\t\t\t\"value\": \"docf1342\",\n\t\t\t\t\t\t\t\t\t\"path\": \"docman.root.product_1.vnnmbn\",\n\t\t\t\t\t\t\t\t\t\"parentFolderId\": \"docf1006\",\n\t\t\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t]\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Product 2\",\n\t\t\t\t\t\t\t\"value\": \"docf1009\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.product_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1019\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1021\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_0\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1027\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_1\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1047\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_3\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1056\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_4\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1067\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_5\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1074\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder21\",\n\t\t\t\t\t\t\t\"value\": \"docf1081\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_6\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1089\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_7\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"ParentFolder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1095\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.parentfolder2_8\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": []\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"New Folder under Parent Folder2\",\n\t\t\t\t\t\t\t\"value\": \"docf1343\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.new_folder_under_parent_folder2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fsadfads\",\n\t\t\t\t\t\t\t\"value\": \"docf1344\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fsadfads\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fakdsfjalkds\",\n\t\t\t\t\t\t\t\"value\": \"docf1345\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fakdsfjalkds\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Fads\",\n\t\t\t\t\t\t\t\"value\": \"docf1346\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fads\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fasd\",\n\t\t\t\t\t\t\t\"value\": \"docf1347\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fasd\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Regression test reports\",\n\t\t\t\t\t\t\t\"value\": \"docf1475\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.regression_test_reports\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 5\",\n\t\t\t\t\t\t\t\"value\": \"docf2055\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_5\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 6\",\n\t\t\t\t\t\t\t\"value\": \"docf2056\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_6\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 7\",\n\t\t\t\t\t\t\t\"value\": \"docf2057\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_7\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 9\",\n\t\t\t\t\t\t\t\"value\": \"docf2059\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_9\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"fol 10dacda\",\n\t\t\t\t\t\t\t\"value\": \"docf2060\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.fol_10\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Test Folder 2\",\n\t\t\t\t\t\t\t\"value\": \"docf2078\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.test_folder_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Hello Folder 2\",\n\t\t\t\t\t\t\t\"value\": \"docf2202\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.hello_folder_2\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"Hello Folder 3\",\n\t\t\t\t\t\t\t\"value\": \"docf2203\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.hello_folder_3\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t},\n\t\t\t\t\t\t{\n\t\t\t\t\t\t\t\"text\": \"test empty\",\n\t\t\t\t\t\t\t\"value\": \"docf2206\",\n\t\t\t\t\t\t\t\"path\": \"docman.root.test_empty\",\n\t\t\t\t\t\t\t\"parentFolderId\": \"docf1005\",\n\t\t\t\t\t\t\t\"disabled\": false,\n\t\t\t\t\t\t\t\"checked\": false,\n\t\t\t\t\t\t\t\"collapsed\": true,\n\t\t\t\t\t\t\t\"imgUrl\": \"/sf-images/pngs/folder_closed.png\",\n\t\t\t\t\t\t\t\"children\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t]\n\t\t\t\t},\n\t\t\t\t\"totalCount\": 27\n\t\t\t}\n\t\t},\n\t\t\"scms\": [\n\t\t\t{\n\t\t\t\t\"id\": \"reps1069\",\n\t\t\t\t\"repositoryName\": \"gitrepo\",\n\t\t\t\t\"tagId\": \"gittag\",\n\t\t\t\t\"repositoryId\": \"\"\n\t\t\t},\n\t\t\t{\n\t\t\t\t\"id\": \"reps1068\",\n\t\t\t\t\"repositoryName\": \"svnrepo1\",\n\t\t\t\t\"tagId\": \"newfol\",\n\t\t\t\t\"repositoryId\": \"\"\n\t\t\t}\n\t\t],\n\t\t\"frs\": {\n\t\t\t\"releaseIds\": [\n\t\t\t\t\"rel1002\",\n\t\t\t\t\"rel1001\"\n\t\t\t]\n\t\t},\n\t\t\"binaries\": null\n\t},\n\t\"nestedExternalBaselines\": [\n\t\t{\n\t\t\t\"id\": \"base1019\",\n\t\t\t\"title\": \"comparebaseline_updated\",\n\t\t\t\"projectPath\": \"projects.baselineapiprojectwithdataset175\"\n\t\t},\n\t\t{\n\t\t\t\"id\": \"base1023\",\n\t\t\t\"title\": \"ProjectBaseline_267_updated\",\n\t\t\t\"projectPath\": \"projects.baselineapiprojectwithdataset175\"\n\t\t}\n\t],\n\t\"nestedBaselineDefinitions\": null\n}"}],"_postman_id":"88438eec-a8e9-48c9-a872-b26e29a434d3"},{"name":"Get Project Baselines","id":"8757de11-c0b2-4e32-bf0d-1c42d83262ca","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"","description":"<p>Lists the Project Baselines.</p>\n<p><strong>URL Parameter</strong></p>\n<ul>\n<li><code>projectId</code> (Required)- Project Id/Path</li>\n<li><code>offset</code> (optional) - offset</li>\n<li><code>limit</code> (optional) - no of records to be fetched</li>\n<li><code>sortBy</code> (optional) - sort by column name (field id)</li>\n<li><code>sortOrder</code> (optional) - sort order (asc | desc)</li>\n</ul>\n<p><strong>Payload</strong></p>\n<ul>\n<li>Type - List all records</li>\n<li>Values - ProjectBaseline</li>\n</ul>\n","urlObject":{"query":[],"variable":[]}},"response":[{"id":"dd2a4171-bf1f-4064-b733-702e8e7f163f","name":"List Project Baselines","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"searchBaselines\": [\n        {\n            \"type\": \"all\",\n            \"values\": [\n                \"ProjectBaseline\"\n            ]\n        }\n    ]\n}"},"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/baselines/by-project/projects.collabnet_agile_baseline_20/search?offset=0&limit=10&sortBy=dateModified&sortOrder=desc","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","baselines","by-project","projects.collabnet_agile_baseline_20","search"],"query":[{"key":"offset","value":"0"},{"key":"limit","value":"10"},{"key":"sortBy","value":"dateModified"},{"key":"sortOrder","value":"desc"}]}},"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"baselines\": [\n\t\t{\n\t\t\t\"id\": \"base1025\",\n\t\t\t\"title\": \"22Oct19ProjectBaseline\",\n\t\t\t\"description\": \"22Oct19ProjectBaseline\",\n\t\t\t\"status\": \"Approved\",\n\t\t\t\"metastatusValue\": \"\",\n\t\t\t\"type\": \"Project\",\n\t\t\t\"category\": \"Project Baseline\",\n\t\t\t\"projectId\": \"proj1008\",\n\t\t\t\"createdBy\": \"TeamForge Administrator\",\n\t\t\t\"modifiedBy\": \"TeamForge Administrator\",\n\t\t\t\"approvedBy\": \"TeamForge Administrator\",\n\t\t\t\"flexFields\": null,\n\t\t\t\"dateCreated\": \"10/22/2019\",\n\t\t\t\"dateModified\": \"10/22/2019\",\n\t\t\t\"dateApproved\": \"10/22/2019\",\n\t\t\t\"version\": 101,\n\t\t\t\"baselineDefinition\": {\n\t\t\t\t\"filter\": {\n\t\t\t\t\t\"trackers\": null,\n\t\t\t\t\t\"planningFolders\": {\n\t\t\t\t\t\t\"planningFolderIds\": null,\n\t\t\t\t\t\t\"pfTree\": {\n\t\t\t\t\t\t\t\"planningfolders\": null\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t\"documentFolders\": {\n\t\t\t\t\t\t\"folderIds\": null,\n\t\t\t\t\t\t\"version\": \"\",\n\t\t\t\t\t\t\"filters\": {},\n\t\t\t\t\t\t\"fields\": null,\n\t\t\t\t\t\t\"docTree\": {\n\t\t\t\t\t\t\t\"documentFolder\": null,\n\t\t\t\t\t\t\t\"totalCount\": 0\n\t\t\t\t\t\t}\n\t\t\t\t\t},\n\t\t\t\t\t\"scms\": null,\n\t\t\t\t\t\"frs\": {\n\t\t\t\t\t\t\"releaseIds\": null\n\t\t\t\t\t},\n\t\t\t\t\t\"binaries\": null\n\t\t\t\t},\n\t\t\t\t\"nestedExternalBaselines\": null,\n\t\t\t\t\"nestedBaselineDefinitions\": null\n\t\t\t},\n\t\t\t\"bDefReferenceId\": 49\n\t\t}\n\t],\n\t\"offset\": 0,\n\t\"limit\": 10,\n\t\"totalResultsCount\": 1,\n\t\"baselinesCountByStatus\": null\n}"}],"_postman_id":"8757de11-c0b2-4e32-bf0d-1c42d83262ca"}],"id":"ba9cb72a-b7ca-4b95-b443-1a668c5dbf1b","description":"<p>Provides the list of APIs used when creating TeamForge projects via Project Baselines</p>\n","event":[{"listen":"prerequest","script":{"id":"2fc48c0e-96f6-4b41-9e47-a9912569b67d","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4e1d22bc-ec5e-44b6-b159-e4af41e2fbdb","type":"text/javascript","exec":[""]}}],"_postman_id":"ba9cb72a-b7ca-4b95-b443-1a668c5dbf1b"},{"name":"Baseline Package","item":[{"name":"List Packages","event":[{"listen":"test","script":{"id":"d849276d-9ad3-4655-ac63-e57c8b1610e4","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});",""],"type":"text/javascript"}}],"id":"8805cf94-7a58-477c-8cee-13e72e0e6b6d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":"{{HostName}}/ctfrest/baseline/v1/router/package/baselines/{{NewProjectBaseline_ID}}/list","description":"<p>This API GET call lists the packages created from a baseline.</p>\n<p><strong>URL Parameters</strong> </p>\n<ul>\n<li>baselineId (Required)</li>\n<li>SortBy (Optional)- sorts the list based on columnName</li>\n<li>SortOrder (Optional)- ascending/descending</li>\n</ul>\n","urlObject":{"path":["ctfrest","baseline","v1","router","package","baselines","{{NewProjectBaseline_ID}}","list"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"5af64b3f-7fb9-4cc0-b5db-15c1c1d37c1a","name":"List Packages","originalRequest":{"method":"GET","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"url":{"raw":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/package/baselines/base1120/list?sortBy=dateCreated&sortOrder=desc","protocol":"https","host":["v1allsb","maa","collab","net"],"path":["ctfrest","baseline","v1","router","package","baselines","base1120","list"],"query":[{"key":"sortBy","value":"dateCreated"},{"key":"sortOrder","value":"desc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n\t\"totalCount\": \"1\",\n\t\"packages\": [\n\t\t{\n\t\t\t\"packageId\": \"basepckg1019\",\n\t\t\t\"title\": \"Test Package\",\n\t\t\t\"status\": \"Package is being generated\",\n\t\t\t\"component\": \"Trackers,Documents,File Releases,Source Code Repositories,External Baselines\",\n\t\t\t\"userName\": \"admin\",\n\t\t\t\"userFullName\": \"TeamForge Administrator\",\n\t\t\t\"dateCreated\": \"05/20/2020 21:10 IST\",\n\t\t\t\"downloadPath\": \"https://v1allsb.maa.collab.net/sf/baseline/packages/NA\",\n\t\t\t\"checksum\": \"\"\n\t\t}\n\t]\n}"}],"_postman_id":"8805cf94-7a58-477c-8cee-13e72e0e6b6d"},{"name":"Create Package","event":[{"listen":"test","script":{"id":"90acf265-8a22-406f-87ff-2d84ee625471","exec":["pm.test(\"Status code is 201\", function () {","    pm.response.to.have.status(201);","});","","var jsonData = JSON.parse(responseBody);","postman.setEnvironmentVariable(\"packageId_Tracker\", jsonData.packageId);","postman.setEnvironmentVariable(\"packageTitle_Tracker\", jsonData.title);",""],"type":"text/javascript"}}],"id":"42f41130-8a18-419a-b161-9cc79ed988c7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Package_345\",\n  \"categories\": [\n    \"Tracker\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/package/baselines/{{NewProjectBaseline_ID}}/create","description":"<p>Creates a package from a baseline.</p>\n<p><strong>URL Parameter</strong></p>\n<p><code>baselineID</code> (Required)</p>\n<p><strong>Payload</strong></p>\n<ul>\n<li><p>Title(Required) - Title of the Package</p>\n</li>\n<li><p>Component List (Required any one component)</p>\n<p>Provide the list of components to be part of the package. Choose from the list below.</p>\n</li>\n</ul>\n<pre class=\"click-to-expand-wrapper is-snippet-wrapper\"><code class=\"language-json\">\"Trackers\",\n\"Documents\",\n\"File Releases\",\n\"Source Code Repositories\",\n\"External Baselines\"\n</code></pre>\n","urlObject":{"path":["ctfrest","baseline","v1","router","package","baselines","{{NewProjectBaseline_ID}}","create"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"bbcde8b2-f966-4e23-876a-96ffd7964877","name":"Create Package","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n    \"title\": \"Test Package\",\n    \"components\": [\n        \"Trackers\",\n        \"Documents\",\n        \"File Releases\",\n        \"Source Code Repositories\",\n        \"External Baselines\"\n    ]\n}"},"url":"https://v1allsb.maa.collab.net/ctfrest/baseline/v1/router/package/baselines/base1120/create"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jan 2019 05:05:24 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"296"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"{\n\t\"packageId\": \"basepckg1019\",\n\t\"title\": \"Test Package\",\n\t\"status\": \"Package is being generated\",\n\t\"component\": \"Trackers,Documents,Source Code Repositories,File Releases,External Baselines\",\n\t\"userName\": \"admin\",\n\t\"userFullName\": \"TeamForge Administrator\",\n\t\"dateCreated\": \"05/20/2020 21:10 IST\",\n\t\"downloadPath\": \"https://v1allsb.maa.collab.net/sf/baseline/packages/NA\",\n\t\"checksum\": \"\"\n}"}],"_postman_id":"42f41130-8a18-419a-b161-9cc79ed988c7"},{"name":"Create Package From an Unapproved Baseline","event":[{"listen":"test","script":{"id":"2577efdf-4b15-4cb7-a6cf-176cda8d8a83","exec":["pm.test(\"Status code is 400\", function () {","    pm.response.to.have.status(400);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('\"message\": \"Package can be created only in approved baselines\"');","});"],"type":"text/javascript"}}],"id":"aba2eff7-2c96-481a-80d7-171b9c7a3226","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Package_345\",\n  \"categories\": [\n    \"Tracker\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/package/baselines/{{baseId1}}/create","description":"<p>A \"400 Bad Request\" error is thrown, when a user tries to create a package (including \"Trackers\" category as package criteria) from an unapproved baseline, via the REST API call</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","package","baselines","{{baseId1}}","create"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"3df1e712-6ea8-45f2-ae3f-ff86b11bc57f","name":"Create Package From an Unapproved Baseline","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Package_345\",\n  \"categories\": [\n    \"Tracker\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/package/baselines/{{baseId1}}/create"},"status":"Bad Request","code":400,"_postman_previewlanguage":"json","header":[{"key":"Date","value":"Thu, 31 Jan 2019 05:07:55 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"application/json"},{"key":"Content-Length","value":"78"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Connection","value":"close"}],"cookie":[],"responseTime":null,"body":"{\n    \"code\": \"NotFound\",\n    \"message\": \"Package for the category already exists\"\n}"}],"_postman_id":"aba2eff7-2c96-481a-80d7-171b9c7a3226"},{"name":"Create Package Using Baseline Definition ID","event":[{"listen":"test","script":{"id":"d32430aa-5bb0-436f-b01f-8918f53a8e63","exec":["pm.test(\"Status code is 404\", function () {","    pm.response.to.have.status(404);","});","","pm.test(\"Body matches string\", function () {","    pm.expect(pm.response.text()).to.include('404 page not found');","});"],"type":"text/javascript"}}],"id":"b561caed-0d6a-46c8-9f19-dd8b951a92c2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Package_345\",\n  \"categories\": [\n    \"Tracker\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/package/base/{{baseDefId1}}/create","description":"<p>A \"404 Not Found\" error is thrown, when a user tries to create a baseline package using Baseline Definition ID instead of Baseline ID</p>\n","urlObject":{"path":["ctfrest","baseline","v1","router","package","base","{{baseDefId1}}","create"],"host":["{{HostName}}"],"query":[],"variable":[]}},"response":[{"id":"98dd8076-70da-45f3-a516-0d5df9268518","name":"Create Packag using Baseline Definition ID","originalRequest":{"method":"POST","header":[{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/json"},{"key":"Authorization","value":"{{Token}}"}],"body":{"mode":"raw","raw":"{\n  \"title\": \"Package_345\",\n  \"categories\": [\n    \"Tracker\"\n  ]\n}"},"url":"{{HostName}}/ctfrest/baseline/v1/router/package/base/{{baseDefId1}}/create"},"status":"Not Found","code":404,"_postman_previewlanguage":"plain","header":[{"key":"Date","value":"Thu, 31 Jan 2019 05:18:27 GMT"},{"key":"Server","value":"Apache"},{"key":"X-XSS-PROTECTION","value":"1"},{"key":"Strict-Transport-Security","value":"max-age=7884000; includeSubdomains;"},{"key":"Expires","value":"0"},{"key":"Cache-Control","value":"no-cache, no-store, must-revalidate"},{"key":"Content-Type","value":"text/plain;charset=utf-8"},{"key":"Content-Length","value":"19"},{"key":"X-UA-Compatible","value":"IE=Edge"},{"key":"Vary","value":"User-Agent"},{"key":"Keep-Alive","value":"timeout=15, max=10000"},{"key":"Connection","value":"Keep-Alive"}],"cookie":[],"responseTime":null,"body":"404 page not found\n"}],"_postman_id":"b561caed-0d6a-46c8-9f19-dd8b951a92c2"}],"id":"b8a92af7-159e-4cc4-b494-a97f57f60f10","description":"<p>Provides the list of APIs used when creating baseline packages</p>\n","event":[{"listen":"prerequest","script":{"id":"6093f34f-b3bc-4366-9a88-3d1a33771e7a","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"722f9219-649b-4019-b0c3-7d884c3611e8","type":"text/javascript","exec":[""]}}],"_postman_id":"b8a92af7-159e-4cc4-b494-a97f57f60f10"}],"event":[{"listen":"prerequest","script":{"id":"084f1d42-d7db-4dc0-a81f-a2a51702b3ca","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"a03c0f69-de8a-4d14-a22b-cbc7b276f9f9","type":"text/javascript","exec":[""]}}]}