{"info":{"_postman_id":"09f1755e-6ebd-42e7-92fa-823734fc0f7f","name":"Using the Simplifier.net API","description":"<html><head></head><body><p>An example collection of queries to interact with Simplifier.net and FHIR content in (private) projects. See the Simplifier API documentation for more information: <a href=\"https://docs.fire.ly/projects/Simplifier/api.html\">https://docs.fire.ly/projects/Simplifier/api.html</a></p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"8381182","collectionId":"09f1755e-6ebd-42e7-92fa-823734fc0f7f","publishedId":"TW6xo8Yv","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"EF5B25"},"publishDate":"2021-01-29T15:38:11.000Z"},"item":[{"name":"Authentication","item":[{"name":"Get JWT token","event":[{"listen":"test","script":{"id":"4ce47723-dffd-4eaa-97ab-768e0f357cd5","exec":["var jsonData = JSON.parse(responseBody);\r","postman.setGlobalVariable(\"simplifier_token\", jsonData.token);\r","postman.setGlobalVariable(\"simplifier_refreshToken\", jsonData.refreshToken);"],"type":"text/javascript"}}],"id":"91bac3fc-4608-4e6a-9137-311d2f73d7b0","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Email\": \"{{email}}\",\r\n    \"Password\": \"{{password}}\"\r\n}"},"url":"https://api.simplifier.net/token","description":"<p>Get a JWT <code>token</code> and <code>refreshToken</code> in exchange for a set of Simplifier.net credentials: <code>username</code> and <code>password</code>.</p>\n<p>The <code>token</code> can then be used as Bearer authentication token for the protected API calls. It has a limited validity time, so when it expires you can use the <code>refreshToken</code>, which has a longer expiry time, to request a new one.</p>\n<p>Handed out <code>refreshToken</code>s for your account can be viewed and revoked at <a href=\"https://simplifier.net/myrefreshtokens\">https://simplifier.net/myrefreshtokens</a>.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9b5bdf2d-8bfb-474d-813d-49889faa983d","id":"9b5bdf2d-8bfb-474d-813d-49889faa983d","name":"Authentication","type":"folder"}},"urlObject":{"protocol":"https","path":["token"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"320ae623-9263-4c73-ab4e-73d409980914","name":"Get JWT token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Email\": \"{{username}}\",\r\n    \"Password\": \"{{password}}\"\r\n}"},"url":"https://api.simplifier.net/token"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"611"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:33:47 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"someVeryLongToken\",\n    \"refreshToken\": \"theRefreshToken\"\n}"}],"_postman_id":"91bac3fc-4608-4e6a-9137-311d2f73d7b0"},{"name":"Get new JWT token with refresh token","event":[{"listen":"test","script":{"id":"719225ee-b085-41ec-b902-aae65307157e","exec":["var jsonData = JSON.parse(responseBody);\r","postman.setGlobalVariable(\"simplifier_token\", jsonData.token);\r","postman.setGlobalVariable(\"simplifier_refreshToken\", jsonData.refreshToken);"],"type":"text/javascript"}}],"id":"cfd9e1a7-043e-4946-9916-ed6010ee6688","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Token\": \"{{simplifier_token}}\",\r\n    \"RefreshToken\": \"{{simplifier_refreshToken}}\"\r\n}"},"url":"https://api.simplifier.net/token/refresh","description":"<p>When your <code>token</code> is expired, you can use the <code>refreshToken</code> to get a new pair of tokens, as long as the <code>refreshToken</code> has not expired itself and isn't revoked. Each <code>refreshToken</code> can only be used once.</p>\n<p>Handed out <code>refreshToken</code>s for your account can be viewed and revoked at <a href=\"https://simplifier.net/myrefreshtokens\">https://simplifier.net/myrefreshtokens</a>.</p>\n","urlObject":{"protocol":"https","path":["token","refresh"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"ef16d590-40a1-46fc-bb4e-409a4a0713a7","name":"Get new JWT token with refresh token","originalRequest":{"method":"POST","header":[{"key":"Content-Type","value":"application/json","type":"text"}],"body":{"mode":"raw","raw":"{\r\n    \"Token\": \"{{simplifier_token}}\",\r\n    \"RefreshToken\": \"{{simplifier_refreshToken}}\"\r\n}"},"url":"https://api.simplifier.net/token/refresh"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"611"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:35:23 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"token\": \"someNewVeryLongToken\",\n    \"refreshToken\": \"aNewRefreshToken\"\n}"}],"_postman_id":"cfd9e1a7-043e-4946-9916-ed6010ee6688"},{"name":"Test token","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript"}}],"id":"5758a038-f4db-4061-837a-12f2d70366e5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/test","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","auth":{"type":"noauth","isInherited":true,"source":{"_postman_id":"9b5bdf2d-8bfb-474d-813d-49889faa983d","id":"9b5bdf2d-8bfb-474d-813d-49889faa983d","name":"Authentication","type":"folder"}},"urlObject":{"protocol":"https","path":["test"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"1c0d8636-6263-4b57-ac4f-a50303a2a8e3","name":"Get my features","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/myfeatures"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"147"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:36:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"UseForgeCommercially\": true\n}"}],"_postman_id":"5758a038-f4db-4061-837a-12f2d70366e5"}],"id":"9b5bdf2d-8bfb-474d-813d-49889faa983d","description":"<p>Queries to get a JWT token for interacting with the different APIs for Simplifier.net. Alternatively, some of the calls also accept authentication with Basic Auth.</p>\n<p>Make sure to have set your <code>email</code> and <code>password</code> in your Environment.</p>\n","auth":{"type":"noauth","isInherited":false},"event":[{"listen":"prerequest","script":{"id":"03b54803-c4bd-45b5-af17-493bf77c782b","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"dd9eb86f-e0b5-4b5e-b468-c99c97b3cc95","type":"text/javascript","exec":[""]}}],"_postman_id":"9b5bdf2d-8bfb-474d-813d-49889faa983d"},{"name":"Features API","item":[{"name":"Get my features","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript"}}],"id":"24e21837-a603-4936-a896-775b4d64ba3a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/myfeatures","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","urlObject":{"protocol":"https","path":["myfeatures"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"1fb931d0-8e34-44f1-8a0b-f0851be14cb6","name":"Get my features","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/myfeatures"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"147"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:36:43 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"UseForgeCommercially\": true\n}"}],"_postman_id":"24e21837-a603-4936-a896-775b4d64ba3a"},{"name":"Get projects","event":[{"listen":"test","script":{"id":"8a22cac0-863e-4448-877e-826f6d2bc48e","exec":["var jsonData = JSON.parse(responseBody);\r","postman.setGlobalVariable(\"project_urlkey\", jsonData[0].UrlKey);"],"type":"text/javascript"}}],"id":"5a9380a7-6d15-4d92-b87d-8f65ea280117","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/api/v2/myprojects","description":"<p>Return the Simplifier.net projects for the user.</p>\n<p>The Test for this Postman call will store the first project URL key, for use in other API calls.</p>\n","urlObject":{"protocol":"https","path":["api","v2","myprojects"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"f5943695-2b05-4148-97a6-a375dc7c04da","name":"Get projects","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/api/v2/myprojects"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"235"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:03:41 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"UrlKey\": \"Testproject130\",\n        \"Title\": \"Test project 1\",\n        \"Description\": \"Some test project 1\",\n        \"FhirVersion\": \"R4\"\n    },\n    {\n        \"UrlKey\": \"FreeWardsprivateproject\",\n        \"Title\": \"Free Ward's private project\",\n        \"Description\": \"Free Ward's private project\",\n        \"FhirVersion\": \"R4\"\n    }\n]"}],"_postman_id":"5a9380a7-6d15-4d92-b87d-8f65ea280117"},{"name":"Get project files","id":"10dd3d59-4c48-4307-9668-1be657c9b701","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/api/v3/projects/{{project_urlkey}}/Files","description":"<p>Return a list of files contained in the Simplifier.net project.</p>\n","urlObject":{"protocol":"https","path":["api","v3","projects","{{project_urlkey}}","Files"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"dfe4618f-9765-407a-9e68-63ffbe3d7696","name":"Get project files","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://api.simplifier.net/api/v3/projects/{{project_urlkey}}/Files"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"550"},{"key":"Content-Type","value":"application/json; charset=utf-8"},{"key":"Content-Encoding","value":"gzip"},{"key":"Vary","value":"Accept-Encoding"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:37:05 GMT"}],"cookie":[],"responseTime":null,"body":"[\n    {\n        \"Key\": \"c0f205e1-15a4-4592-bfc5-0b7aa805769b\",\n        \"DisplayName\": \"Home\",\n        \"Description\": \"Generated file.\",\n        \"ResourceType\": \"Binary\"\n    },\n    {\n        \"Key\": \"75dfed53-6fe3-4287-a2cf-0bd9c30e9850\",\n        \"DisplayName\": \"Home\",\n        \"Description\": \"Generated file.\",\n        \"ResourceType\": \"Binary\"\n    },\n    {\n        \"Key\": \"de9657c3-581b-4d73-82eb-3612efeb6fd0\",\n        \"DisplayName\": \"IG1\",\n        \"Description\": \"ImplementationGuide\",\n        \"ResourceType\": \"ImplementationGuide\"\n    },\n    {\n        \"Key\": \"dc7045ea-ec13-4a6b-b5d8-9729f0e642de\",\n        \"DisplayName\": \"IG2\",\n        \"Description\": \"ImplementationGuide\",\n        \"ResourceType\": \"ImplementationGuide\"\n    },\n    {\n        \"Key\": \"677f5c49-defe-4cd1-9888-c51d95d9428d\",\n        \"DisplayName\": \"package.json\",\n        \"Description\": \"Generated file.\",\n        \"ResourceType\": \"Binary\"\n    },\n    {\n        \"Key\": \"53f4ceed-1327-4c5f-8278-8607a78f226d\",\n        \"DisplayName\": \"Example Patient\",\n        \"Description\": \"Patient from Erewhon, abc\",\n        \"ResourceType\": \"Patient\"\n    },\n    {\n        \"Key\": \"5e083a2b-1454-4b55-9696-baf9068ba2e6\",\n        \"DisplayName\": \"Example Patient\",\n        \"Description\": \"Patient from Erewhon, abc\",\n        \"ResourceType\": \"Patient\"\n    }\n]"}],"_postman_id":"10dd3d59-4c48-4307-9668-1be657c9b701"}],"id":"01232914-aab5-46e0-848b-70d71cf05fc9","description":"<p>Simplifier.net API for retrieving user details. This is not a regular FHIR API.</p>\n","event":[{"listen":"prerequest","script":{"id":"15f785ff-d2a1-43c3-bb40-bb9dd1579ace","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"4c2f0ed9-3ae3-487d-9617-91065f5ed22e","type":"text/javascript","exec":[""]}}],"_postman_id":"01232914-aab5-46e0-848b-70d71cf05fc9"},{"name":"FHIR Endpoint","item":[{"name":"FHIR Endpoint: Get Capability Statement","event":[{"listen":"test","script":{"id":"3d9d02aa-be0e-4227-9159-6fe2c53d4381","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"c0ae8576-3f97-4622-ba68-07dcff890a6c","exec":[""],"type":"text/javascript"}}],"id":"4f02280c-ba8d-4071-bbb1-c1084b6d87ff","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/fhir+json"},{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://fhir.simplifier.net/{{project_urlkey}}/metadata","urlObject":{"protocol":"https","path":["{{project_urlkey}}","metadata"],"host":["fhir","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"fe7a3b9a-c564-4ddb-b5f4-69182c3195b3","name":"FHIR Endpoint: Get Capability Statement","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/fhir+json"},{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://fhir.simplifier.net/{{project_urlkey}}/metadata"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"3524"},{"key":"Content-Type","value":"application/fhir+json; fhirVersion=4.0; charset=utf-8"},{"key":"Last-Modified","value":"Tue, 02 Mar 2021 10:50:37 GMT"},{"key":"ETag","value":"W/\"7b77f32e-fb0b-41f3-90af-5829c55769bd\""},{"key":"Location","value":"https://fhir.simplifier.net/Testproject130/metadata"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Wed, 03 Mar 2021 09:24:38 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"CapabilityStatement\",\n    \"id\": \"07248353-4f63-4517-837a-507e65b689fc\",\n    \"meta\": {\n        \"versionId\": \"7b77f32e-fb0b-41f3-90af-5829c55769bd\",\n        \"lastUpdated\": \"2021-03-02T10:50:37.5990015+00:00\"\n    },\n    \"language\": \"en-US\",\n    \"url\": \"metadata\",\n    \"version\": \"1.0\",\n    \"name\": \"Vonk FHIR server 3.6.0 CapabilityStatement\",\n    \"status\": \"active\",\n    \"experimental\": true,\n    \"date\": \"2021-03-02T10:50:37.6271625+00:00\",\n    \"publisher\": \"Firely\",\n    \"contact\": [\n        {\n            \"name\": \"Firely\",\n            \"telecom\": [\n                {\n                    \"system\": \"email\",\n                    \"value\": \"server@fire.ly\",\n                    \"use\": \"work\"\n                }\n            ]\n        },\n        {\n            \"name\": \"Firely\",\n            \"telecom\": [\n                {\n                    \"system\": \"email\",\n                    \"value\": \"vonk@fire.ly\",\n                    \"use\": \"work\"\n                }\n            ]\n        },\n        {\n            \"name\": \"Licensed to\",\n            \"telecom\": [\n                {\n                    \"system\": \"email\",\n                    \"value\": \"simplifier@fire.ly\",\n                    \"use\": \"work\"\n                }\n            ]\n        }\n    ],\n    \"kind\": \"instance\",\n    \"software\": {\n        \"name\": \"Vonk\",\n        \"version\": \"3.6.0\",\n        \"releaseDate\": \"2020-05-26T08:07:30+00:00\"\n    },\n    \"implementation\": {\n        \"description\": \"Vonk FHIR Server\",\n        \"url\": \"fhir.simplifier.net\"\n    },\n    \"fhirVersion\": \"4.0.1\",\n    \"format\": [\n        \"xml\",\n        \"json\"\n    ],\n    \"rest\": [\n        {\n            \"mode\": \"server\",\n            \"interaction\": [\n                {\n                    \"code\": \"search-system\"\n                }\n            ],\n            \"searchParam\": [\n                {\n                    \"name\": \"_count\",\n                    \"type\": \"number\",\n                    \"documentation\": \"The number of resources returned per page\"\n                },\n                {\n                    \"name\": \"_format\",\n                    \"type\": \"string\",\n                    \"documentation\": \"Specify the returned format of the payload response\"\n                },\n                {\n                    \"name\": \"_has\",\n                    \"type\": \"string\",\n                    \"documentation\": \"Enables querying a reverse chain\"\n                },\n                {\n                    \"name\": \"_id\",\n                    \"definition\": \"http://hl7.org/fhir/SearchParameter/Resource-id\",\n                    \"type\": \"token\",\n                    \"documentation\": \"Logical id of this artifact\"\n                },\n                {\n                    \"name\": \"_lastUpdated\",\n                    \"definition\": \"http://hl7.org/fhir/SearchParameter/Resource-lastUpdated\",\n                    \"type\": \"date\",\n                    \"documentation\": \"When the resource version last changed\"\n                },\n                {\n                    \"name\": \"_profile\",\n                    \"definition\": \"http://hl7.org/fhir/SearchParameter/Resource-profile\",\n                    \"type\": \"uri\",\n                    \"documentation\": \"Profiles this resource claims to conform to\"\n                },\n                {\n                    \"name\": \"_security\",\n                    \"definition\": \"http://hl7.org/fhir/SearchParameter/Resource-security\",\n                    \"type\": \"token\",\n                    \"documentation\": \"Security Labels applied to this resource\"\n                },\n                {\n                    \"name\": \"_source\",\n                    \"definition\": \"http://hl7.org/fhir/SearchParameter/Resource-source\",\n                    \"type\": \"uri\",\n                    \"documentation\": \"Identifies where the resource comes from\"\n                },\n                {\n                    \"name\": \"_tag\",\n                    \"definition\": \"http://hl7.org/fhir/SearchParameter/Resource-tag\",\n                    \"type\": \"token\",\n                    \"documentation\": \"Tags applied to this resource\"\n                },\n                {\n                    \"name\": \"_type\",\n                    \"type\": \"string\",\n                    \"documentation\": \"Enables querying for a type of resource\"\n                }\n            ]\n        }\n    ]\n}"}],"_postman_id":"4f02280c-ba8d-4071-bbb1-c1084b6d87ff"},{"name":"FHIR Endpoint: Search for all resources","event":[{"listen":"test","script":{"id":"7863a4d2-d1ee-42b9-9221-88ace321e9de","exec":[""],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"1caafc7f-c4c8-4950-9577-94c3029b765d","exec":[""],"type":"text/javascript"}}],"id":"097a2c27-1e80-4e40-af94-d4f5c9950802","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/fhir+json"},{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://fhir.simplifier.net/{{project_urlkey}}/?_count=20","urlObject":{"protocol":"https","path":["{{project_urlkey}}",""],"host":["fhir","simplifier","net"],"query":[{"key":"_count","value":"20"}],"variable":[]}},"response":[{"id":"a2068929-1a42-4127-8305-fd8502227254","name":"FHIR Endpoint: Search for all resources","originalRequest":{"method":"GET","header":[{"key":"Accept","type":"text","value":"application/fhir+json"},{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":{"raw":"https://fhir.simplifier.net/{{project_urlkey}}/?_count=20","protocol":"https","host":["fhir","simplifier","net"],"path":["{{project_urlkey}}",""],"query":[{"key":"_count","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"6901"},{"key":"Content-Type","value":"application/fhir+json; fhirVersion=4.0; charset=utf-8"},{"key":"Last-Modified","value":"Fri, 26 Feb 2021 14:39:36 GMT"},{"key":"ETag","value":"W/\"78bf0521-b732-49fd-8079-915ef7f4d60c\""},{"key":"Location","value":"https://fhir.simplifier.net/Testproject130/?_count=20&_skip=0"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:39:36 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2021-02-26T14:39:36.593+00:00\",\n    \"meta\": {\n        \"lastUpdated\": \"2021-02-26T14:39:36.593+00:00\",\n        \"versionId\": \"78bf0521-b732-49fd-8079-915ef7f4d60c\"\n    },\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/53f4ceed-1327-4c5f-8278-8607a78f226d\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-01-29T22:25:08.207+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"53f4ceed-1327-4c5f-8278-8607a78f226d\"\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/5e083a2b-1454-4b55-9696-baf9068ba2e6\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-02-02T10:47:08.226+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"5e083a2b-1454-4b55-9696-baf9068ba2e6\"\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/ImplementationGuide/dc7045ea-ec13-4a6b-b5d8-9729f0e642de\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"ImplementationGuide\",\n                \"url\": \"https://simplifier.net/guide/ig6\",\n                \"name\": \"IG2\",\n                \"status\": \"draft\",\n                \"fhirVersion\": [\n                    \"4.0.0\"\n                ],\n                \"definition\": {\n                    \"page\": {\n                        \"nameUrl\": \"Home-duplicate-2.md\",\n                        \"title\": \"Home\",\n                        \"generation\": \"markdown\"\n                    }\n                },\n                \"id\": \"dc7045ea-ec13-4a6b-b5d8-9729f0e642de\",\n                \"meta\": {\n                    \"versionId\": \"2\",\n                    \"lastUpdated\": \"2021-01-29T14:43:54.330+00:00\"\n                }\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/ImplementationGuide/de9657c3-581b-4d73-82eb-3612efeb6fd0\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"ImplementationGuide\",\n                \"url\": \"https://simplifier.net/guide/ig5\",\n                \"name\": \"IG1\",\n                \"status\": \"draft\",\n                \"fhirVersion\": [\n                    \"4.0.0\"\n                ],\n                \"definition\": {\n                    \"page\": {\n                        \"nameUrl\": \"Home.md\",\n                        \"title\": \"Home\",\n                        \"generation\": \"markdown\"\n                    }\n                },\n                \"id\": \"de9657c3-581b-4d73-82eb-3612efeb6fd0\",\n                \"meta\": {\n                    \"versionId\": \"2\",\n                    \"lastUpdated\": \"2021-01-29T14:43:54.333+00:00\"\n                }\n            }\n        }\n    ],\n    \"total\": 4,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://fhir.simplifier.net/Testproject130/?_count=20&_skip=0\"\n        }\n    ],\n    \"id\": \"fac79c66-b1f0-4088-9a75-d246f5189920\"\n}"}],"_postman_id":"097a2c27-1e80-4e40-af94-d4f5c9950802"},{"name":"FHIR Endpoint: Post Patient to project","event":[{"listen":"prerequest","script":{"id":"d277c877-7a27-486e-829e-e072d5cbea8c","exec":[""],"type":"text/javascript"}},{"listen":"test","script":{"id":"3ebf0952-697f-4482-a6a3-edc18c1261bc","exec":["var jsonData = JSON.parse(responseBody);","postman.setGlobalVariable(\"patientId\", jsonData.id);"],"type":"text/javascript"}}],"id":"d87c3218-883a-426b-9e46-e9ffcb127643","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/fhir+json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/fhir+json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"resourceType\": \"Patient\",\n    \"id\": \"1361404959\",\n    \"meta\": {\n        \"versionId\": \"1114810487\",\n        \"lastUpdated\": \"2019-12-03T17:14:00.8791226+00:00\",\n        \"profile\": [\n            \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n        ]\n    },\n    \"implicitRules\": \"http://hl7.org/fhir/reference\",\n    \"language\": \"en-IN\",\n    \"text\": {\n        \"status\": \"extensions\",\n        \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n    },\n    \"identifier\": [\n        {\n            \"use\": \"usual\",\n            \"system\": \"http://www.acme.com/identifiers/patient\",\n            \"value\": \"123456\"\n        }\n    ],\n    \"active\": true,\n    \"name\": [\n        {\n            \"use\": \"official\",\n            \"text\": \"Example Patient\",\n            \"family\": \"Patient\",\n            \"given\": [\n                \"Example\"\n            ]\n        }\n    ],\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"abc\",\n            \"use\": \"home\"\n        }\n    ],\n    \"gender\": \"other\",\n    \"deceasedBoolean\": false,\n    \"address\": [\n        {\n            \"use\": \"home\",\n            \"type\": \"both\",\n            \"text\": \"137 Nowhere Street, Erewhon 9132\",\n            \"line\": [\n                \"137 Nowhere Street\"\n            ],\n            \"city\": \"Erewhon\",\n            \"district\": \"Madison\",\n            \"state\": \"abc\",\n            \"postalCode\": \"9132\",\n            \"country\": \"abc\"\n        }\n    ],\n    \"maritalStatus\": {\n        \"text\": \"abc\"\n    },\n    \"multipleBirthBoolean\": false,\n    \"photo\": [\n        {\n            \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n            \"language\": \"en-AU\",\n            \"url\": \"http://www.acme.com/logo-small.png\",\n            \"size\": 1037423195,\n            \"title\": \"Official Corporate Logo\",\n            \"creation\": \"1984-05-06T14:42:00+00:00\"\n        }\n    ],\n    \"managingOrganization\": {\n        \"reference\": \"abc\",\n        \"display\": \"abc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://fhir.simplifier.net/{{project_urlkey}}/Patient","description":"<p>The Test for this Postman call will store the first returned patient's id for use in other API calls.</p>\n","urlObject":{"protocol":"https","path":["{{project_urlkey}}","Patient"],"host":["fhir","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"a70d23fc-512d-466a-965d-2d585702bb2d","name":"FHIR Endpoint: Post Patient to project","originalRequest":{"method":"POST","header":[{"key":"Accept","type":"text","value":"application/fhir+json"},{"key":"Content-Type","name":"Content-Type","type":"text","value":"application/fhir+json"},{"warning":"This is a duplicate header and will be overridden by the Authorization header generated by Postman.","key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"body":{"mode":"raw","raw":"{\n    \"resourceType\": \"Patient\",\n    \"id\": \"1361404959\",\n    \"meta\": {\n        \"versionId\": \"1114810487\",\n        \"lastUpdated\": \"2019-12-03T17:14:00.8791226+00:00\",\n        \"profile\": [\n            \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n        ]\n    },\n    \"implicitRules\": \"http://hl7.org/fhir/reference\",\n    \"language\": \"en-IN\",\n    \"text\": {\n        \"status\": \"extensions\",\n        \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n    },\n    \"identifier\": [\n        {\n            \"use\": \"usual\",\n            \"system\": \"http://www.acme.com/identifiers/patient\",\n            \"value\": \"123456\"\n        }\n    ],\n    \"active\": true,\n    \"name\": [\n        {\n            \"use\": \"official\",\n            \"text\": \"Example Patient\",\n            \"family\": \"Patient\",\n            \"given\": [\n                \"Example\"\n            ]\n        }\n    ],\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"abc\",\n            \"use\": \"home\"\n        }\n    ],\n    \"gender\": \"other\",\n    \"deceasedBoolean\": false,\n    \"address\": [\n        {\n            \"use\": \"home\",\n            \"type\": \"both\",\n            \"text\": \"137 Nowhere Street, Erewhon 9132\",\n            \"line\": [\n                \"137 Nowhere Street\"\n            ],\n            \"city\": \"Erewhon\",\n            \"district\": \"Madison\",\n            \"state\": \"abc\",\n            \"postalCode\": \"9132\",\n            \"country\": \"abc\"\n        }\n    ],\n    \"maritalStatus\": {\n        \"text\": \"abc\"\n    },\n    \"multipleBirthBoolean\": false,\n    \"photo\": [\n        {\n            \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n            \"language\": \"en-AU\",\n            \"url\": \"http://www.acme.com/logo-small.png\",\n            \"size\": 1037423195,\n            \"title\": \"Official Corporate Logo\",\n            \"creation\": \"1984-05-06T14:42:00+00:00\"\n        }\n    ],\n    \"managingOrganization\": {\n        \"reference\": \"abc\",\n        \"display\": \"abc\"\n    }\n}","options":{"raw":{"language":"json"}}},"url":"https://fhir.simplifier.net/{{project_urlkey}}/Patient"},"status":"Created","code":201,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"1788"},{"key":"Content-Type","value":"application/fhir+json; fhirVersion=4.0; charset=utf-8"},{"key":"Last-Modified","value":"Fri, 26 Feb 2021 14:41:49 GMT"},{"key":"ETag","value":"W/\"1\""},{"key":"Location","value":"https://fhir.simplifier.net/Testproject130/Patient/c6b51ecc-cbbd-4150-8b75-1b3ef4eb3b7f/_history/1"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:41:48 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Patient\",\n    \"meta\": {\n        \"versionId\": \"1\",\n        \"lastUpdated\": \"2021-02-26T14:41:49.196+00:00\",\n        \"profile\": [\n            \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n        ]\n    },\n    \"implicitRules\": \"http://hl7.org/fhir/reference\",\n    \"language\": \"en-IN\",\n    \"text\": {\n        \"status\": \"extensions\",\n        \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n    },\n    \"identifier\": [\n        {\n            \"use\": \"usual\",\n            \"system\": \"http://www.acme.com/identifiers/patient\",\n            \"value\": \"123456\"\n        }\n    ],\n    \"active\": true,\n    \"name\": [\n        {\n            \"use\": \"official\",\n            \"text\": \"Example Patient\",\n            \"family\": \"Patient\",\n            \"given\": [\n                \"Example\"\n            ]\n        }\n    ],\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"value\": \"abc\",\n            \"use\": \"home\"\n        }\n    ],\n    \"gender\": \"other\",\n    \"deceasedBoolean\": false,\n    \"address\": [\n        {\n            \"use\": \"home\",\n            \"type\": \"both\",\n            \"text\": \"137 Nowhere Street, Erewhon 9132\",\n            \"line\": [\n                \"137 Nowhere Street\"\n            ],\n            \"city\": \"Erewhon\",\n            \"district\": \"Madison\",\n            \"state\": \"abc\",\n            \"postalCode\": \"9132\",\n            \"country\": \"abc\"\n        }\n    ],\n    \"maritalStatus\": {\n        \"text\": \"abc\"\n    },\n    \"multipleBirthBoolean\": false,\n    \"photo\": [\n        {\n            \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n            \"language\": \"en-AU\",\n            \"url\": \"http://www.acme.com/logo-small.png\",\n            \"size\": 1037423195,\n            \"title\": \"Official Corporate Logo\",\n            \"creation\": \"1984-05-06T14:42:00+00:00\"\n        }\n    ],\n    \"managingOrganization\": {\n        \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n        \"display\": \"abc\"\n    },\n    \"id\": \"c6b51ecc-cbbd-4150-8b75-1b3ef4eb3b7f\"\n}"}],"_postman_id":"d87c3218-883a-426b-9e46-e9ffcb127643"},{"name":"FHIR Endpoint: Search for all patients","event":[{"listen":"test","script":{"id":"52539a68-9470-4fa7-a63a-32af4d1244ac","exec":["var jsonData = JSON.parse(responseBody);","postman.setGlobalVariable(\"patientId\", jsonData.entry[0].resource.id);"],"type":"text/javascript"}},{"listen":"prerequest","script":{"id":"e83cdae0-e374-429c-bb62-97b3de8d9bfa","exec":[""],"type":"text/javascript"}}],"id":"17c95c8f-b704-4804-97ff-c8c2aa0c3277","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json","type":"text"},{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://fhir.simplifier.net/{{project_urlkey}}/Patient?_count=20","description":"<p>The Test for this Postman call will store the first returned patient's id for use in other API calls.</p>\n","urlObject":{"protocol":"https","path":["{{project_urlkey}}","Patient"],"host":["fhir","simplifier","net"],"query":[{"key":"_count","value":"20"}],"variable":[]}},"response":[{"id":"909365f7-81a1-400f-bc1b-edf83b2a5b9b","name":"FHIR Endpoint: Search for all patients","originalRequest":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json","type":"text"},{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":{"raw":"https://fhir.simplifier.net/{{project_urlkey}}/Patient?_count=20","protocol":"https","host":["fhir","simplifier","net"],"path":["{{project_urlkey}}","Patient"],"query":[{"key":"_count","value":"20"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Length","value":"12672"},{"key":"Content-Type","value":"application/fhir+json; fhirVersion=4.0; charset=utf-8"},{"key":"Last-Modified","value":"Fri, 26 Feb 2021 14:42:45 GMT"},{"key":"ETag","value":"W/\"cce828c7-f342-4cd4-a85d-3be89fb45e47\""},{"key":"Location","value":"https://fhir.simplifier.net/Testproject130/Patient?_count=20&_skip=0"},{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:42:44 GMT"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"timestamp\": \"2021-02-26T14:42:45.257+00:00\",\n    \"meta\": {\n        \"lastUpdated\": \"2021-02-26T14:42:45.257+00:00\",\n        \"versionId\": \"cce828c7-f342-4cd4-a85d-3be89fb45e47\"\n    },\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/53f4ceed-1327-4c5f-8278-8607a78f226d\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-01-29T22:25:08.207+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"53f4ceed-1327-4c5f-8278-8607a78f226d\"\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/5e083a2b-1454-4b55-9696-baf9068ba2e6\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-02-02T10:47:08.226+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"5e083a2b-1454-4b55-9696-baf9068ba2e6\"\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/6ccc21fe-06eb-4741-b6dd-59f5c76f3cb9\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-02-26T14:42:19.200+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"6ccc21fe-06eb-4741-b6dd-59f5c76f3cb9\"\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/98205ec8-11a5-450d-a0c4-a6a946e9d98c\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-02-26T14:40:12.532+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"98205ec8-11a5-450d-a0c4-a6a946e9d98c\"\n            }\n        },\n        {\n            \"fullUrl\": \"https://fhir.simplifier.net/Testproject130/Patient/c6b51ecc-cbbd-4150-8b75-1b3ef4eb3b7f\",\n            \"search\": {\n                \"mode\": \"match\"\n            },\n            \"resource\": {\n                \"resourceType\": \"Patient\",\n                \"meta\": {\n                    \"lastUpdated\": \"2021-02-26T14:41:49.196+00:00\",\n                    \"profile\": [\n                        \"https://fake-acme.org/fhir/StructureDefinition/ACME-base-patient\"\n                    ],\n                    \"versionId\": \"1\"\n                },\n                \"implicitRules\": \"http://hl7.org/fhir/reference\",\n                \"language\": \"en-IN\",\n                \"text\": {\n                    \"status\": \"extensions\",\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">Hello world!</div>\"\n                },\n                \"identifier\": [\n                    {\n                        \"use\": \"usual\",\n                        \"system\": \"http://www.acme.com/identifiers/patient\",\n                        \"value\": \"123456\"\n                    }\n                ],\n                \"active\": true,\n                \"name\": [\n                    {\n                        \"use\": \"official\",\n                        \"text\": \"Example Patient\",\n                        \"family\": \"Patient\",\n                        \"given\": [\n                            \"Example\"\n                        ]\n                    }\n                ],\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"value\": \"abc\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"gender\": \"other\",\n                \"deceasedBoolean\": false,\n                \"address\": [\n                    {\n                        \"use\": \"home\",\n                        \"type\": \"both\",\n                        \"text\": \"137 Nowhere Street, Erewhon 9132\",\n                        \"line\": [\n                            \"137 Nowhere Street\"\n                        ],\n                        \"city\": \"Erewhon\",\n                        \"district\": \"Madison\",\n                        \"state\": \"abc\",\n                        \"postalCode\": \"9132\",\n                        \"country\": \"abc\"\n                    }\n                ],\n                \"maritalStatus\": {\n                    \"text\": \"abc\"\n                },\n                \"multipleBirthBoolean\": false,\n                \"photo\": [\n                    {\n                        \"contentType\": \"text/plain; charset=UTF-8, image/png\",\n                        \"language\": \"en-AU\",\n                        \"url\": \"http://www.acme.com/logo-small.png\",\n                        \"size\": 1037423195,\n                        \"title\": \"Official Corporate Logo\",\n                        \"creation\": \"1984-05-06T14:42:00+00:00\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"reference\": \"https://fhir.simplifier.net/Testproject130/abc\",\n                    \"display\": \"abc\"\n                },\n                \"id\": \"c6b51ecc-cbbd-4150-8b75-1b3ef4eb3b7f\"\n            }\n        }\n    ],\n    \"total\": 5,\n    \"link\": [\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://fhir.simplifier.net/Testproject130/Patient?_count=20&_skip=0\"\n        }\n    ],\n    \"id\": \"c182a330-c51d-4725-acbf-bece4134ccd6\"\n}"}],"_postman_id":"17c95c8f-b704-4804-97ff-c8c2aa0c3277"},{"name":"FHIR Endpoint: Delete Patient from project","event":[{"listen":"prerequest","script":{"id":"477f8565-fa01-4ebf-9dcc-08e22baa9825","exec":["eval(pm.variables.get('function_add_fhirVersion'));","eval(pm.variables.get('function_add_apikey'));"],"type":"text/javascript"}},{"listen":"test","script":{"id":"2fe8251a-cb67-4103-a589-397819b4d77d","exec":[""],"type":"text/javascript"}}],"id":"340309fd-28e0-413d-ad0d-7f84caf5998c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://fhir.simplifier.net/{{project_urlkey}}/Patient/{{patientId}}/","urlObject":{"protocol":"https","path":["{{project_urlkey}}","Patient","{{patientId}}",""],"host":["fhir","simplifier","net"],"query":[],"variable":[]}},"response":[{"id":"b33f484b-712c-4325-8582-b1423f222042","name":"FHIR Endpoint: Delete Patient from project","originalRequest":{"method":"DELETE","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://fhir.simplifier.net/{{project_urlkey}}/Patient/{{patientId}}/"},"status":"No Content","code":204,"_postman_previewlanguage":"plain","header":[{"key":"Server","value":"Microsoft-IIS/10.0"},{"key":"Request-Context","value":"appId=cid-v1:1f2583d5-0901-4603-9e51-55bfcc1ec83d"},{"key":"X-Powered-By","value":"ASP.NET"},{"key":"Content-Security-Policy","value":"script-src 'self' https://*.google.com https://www.googleapis.com https://www.googletagmanager.com https://www.google-analytics.com https://*.msecnd.net 'unsafe-inline' 'unsafe-eval'; object-src 'none';"},{"key":"X-XSS-Protection","value":"1; mode=block"},{"key":"X-Content-Type-Options","value":"nosniff"},{"key":"Date","value":"Fri, 26 Feb 2021 14:43:23 GMT"}],"cookie":[],"responseTime":null,"body":null}],"_postman_id":"340309fd-28e0-413d-ad0d-7f84caf5998c"}],"id":"89ef162b-88af-4f68-94f6-77e1a8d0b074","description":"<p>Regular FHIR API for interacting with the FHIR resources in a Simplifier.net project.</p>\n<p>Besides JWT token Bearer authentication also BasicAuth can be used for these calls.</p>\n","_postman_id":"89ef162b-88af-4f68-94f6-77e1a8d0b074"},{"name":"Zip API","item":[{"name":"ZIP endpoint: Download ZIP","id":"b82b79c8-2bf5-4d0c-8e32-47a24bf3e812","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"GET","header":[{"key":"Authorization","type":"text","value":"Bearer {{simplifier_token}}"}],"url":"https://api.simplifier.net/{{project_urlkey}}/zip","description":"<p>Returns a Zip file with all files from the selected project.</p>\n","urlObject":{"protocol":"https","path":["{{project_urlkey}}","zip"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"b82b79c8-2bf5-4d0c-8e32-47a24bf3e812"},{"name":"ZIP endpoint: Upload ZIP","id":"24f1d48e-ef41-4d77-9b33-c068a6aae976","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[{"key":"Authorization","type":"text","value":"Bearer {{simplifier_token}}"}],"body":{"mode":"file","file":{"src":"/C:/Users/Ward/Downloads/Testproject130Files.zip"}},"url":"https://api.simplifier.net/{{project_urlkey}}/zip","description":"<p>Posts a Zip file the Simplifier.net project. If a match is found (based on the filepath within the Zip file) a project resource will be updated. Otherwise a new resource will be created in the project.</p>\n","urlObject":{"protocol":"https","path":["{{project_urlkey}}","zip"],"host":["api","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"24f1d48e-ef41-4d77-9b33-c068a6aae976"}],"id":"b1a81f7d-42f9-47fa-80cc-2e6d679c309c","description":"<p>Simplifier.net API to download a full project or upload/update multiple resources via a Zip folder.</p>\n<p>Besides JWT token Bearer authentication also BasicAuth can be used for these calls.</p>\n","_postman_id":"b1a81f7d-42f9-47fa-80cc-2e6d679c309c"},{"name":"Packages","item":[{"name":"Get public package feed","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript","packages":{}}}],"id":"1c5aa16a-2557-4d82-8ac3-a4b472a137e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://packages.simplifier.net/catalog","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","urlObject":{"protocol":"https","path":["catalog"],"host":["packages","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1c5aa16a-2557-4d82-8ac3-a4b472a137e8"},{"name":"Get public package versions","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript","packages":{}}}],"id":"1d4e9c8a-03ad-4d85-9381-8d277609a0a3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"https://packages.simplifier.net/acme.base.r4","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","urlObject":{"protocol":"https","path":["acme.base.r4"],"host":["packages","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"1d4e9c8a-03ad-4d85-9381-8d277609a0a3"},{"name":"Get private package feed","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript","packages":{}}}],"id":"fc404307-31df-4179-a92a-c401a049712f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://packages.simplifier.net/feeds/acme-private-feed/catalog","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","urlObject":{"protocol":"https","path":["feeds","acme-private-feed","catalog"],"host":["packages","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"fc404307-31df-4179-a92a-c401a049712f"},{"name":"Get private package versions","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript","packages":{}}}],"id":"966c1999-9856-449b-9801-61a433836a4f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://packages.simplifier.net/feeds/acme-private-feed/acme.core.private/","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","urlObject":{"protocol":"https","path":["feeds","acme-private-feed","acme.core.private",""],"host":["packages","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"966c1999-9856-449b-9801-61a433836a4f"},{"name":"Get private package","event":[{"listen":"test","script":{"id":"52d69d38-ee06-4114-bfde-782c8709f797","exec":[""],"type":"text/javascript","packages":{}}}],"id":"c9431b9a-985f-4098-b6d6-2fb4cbcda1cb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Authorization","value":"Bearer {{simplifier_token}}","type":"text"}],"url":"https://packages.simplifier.net/feeds/acme-private-feed/acme.core.private/0.0.1/","description":"<p>Return the features that this user has a right to use in their current plan.</p>\n","urlObject":{"protocol":"https","path":["feeds","acme-private-feed","acme.core.private","0.0.1",""],"host":["packages","simplifier","net"],"query":[],"variable":[]}},"response":[],"_postman_id":"c9431b9a-985f-4098-b6d6-2fb4cbcda1cb"}],"id":"c4902918-aff6-4c31-89ba-20155fd57432","_postman_id":"c4902918-aff6-4c31-89ba-20155fd57432","description":""}],"event":[{"listen":"prerequest","script":{"id":"d32392db-240a-487c-9c4e-b2d99583dc60","type":"text/javascript","exec":[""]}},{"listen":"test","script":{"id":"5a096d6a-0ec9-4036-bc02-a578bff6a6cd","type":"text/javascript","exec":[""]}}]}