{"info":{"_postman_id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","name":"AWARDS FHIR® API Documentation","description":"<html><head></head><body><p>This document is for use by Health IT developers seeking to use our ONC Certified (g)(10) Standardized API for Health Level 7 (HL7®) Fast Healthcare Interoperability Resources (FHIR®) services.</p>\n<p><strong>Base URL</strong>: <a href=\"https://fhir.footholdtechnology.com/**%7Bprovider%7D\">https://fhir.footholdtechnology.com/{provider}</a><br><strong>Service Base URL List</strong>: <a href=\"https://fhir.footholdtechnology.com/Endpoint\">https://fhir.footholdtechnology.com/Endpoint</a></p>\n<p><strong>Configuration Requirements:</strong></p>\n<ol>\n<li><p>Must support TLS 1.2 and above</p>\n</li>\n<li><p>Must support <a href=\"https://oauth.net/2/\">OAuth 2.0</a> authorization</p>\n</li>\n<li><p>Must be able to read and parse JSON responses</p>\n</li>\n<li><p>Must follow \"App protection\" rules as outlined in the specification <a href=\"http://hl7.org/fhir/smart-app-launch/1.0.0/#app-protection\">http://hl7.org/fhir/smart-app-launch/1.0.0/#app-protection</a></p>\n</li>\n</ol>\n<p><strong>Standards Supported:</strong></p>\n<ul>\n<li><p><strong>Bulk Data Access (Flat FHIR) STU</strong><br>  <a href=\"https://hl7.org/fhir/uv/bulkdata/STU1/\">HL7 FHIR® Bulk Data Access (Flat FHIR®) (v1.0.0: STU 1), August 22, 2019</a></p>\n</li>\n<li><p><strong>HL7 FHIR Specification</strong><br>  <a href=\"http://hl7.org/fhir/\">HL7 Fast Healthcare Interoperability Resources Specification (FHIR®) Release 4, Version 4.0.1: R4, October 30, 2019, including Technical Correction #1, November 1, 2019</a></p>\n</li>\n<li><p><strong>SMART Application Launch Framework IG</strong><br>  <a href=\"https://hl7.org/fhir/smart-app-launch/1.0.0/\">HL7 FHIR® SMART Application Launch Framework Implementation Guide Release 1.0.0, November 13, 2018</a></p>\n</li>\n<li><p><strong>US Core IG</strong><br>  <a href=\"https://hl7.org/fhir/us/core/STU3.1.1/\">HL7 FHIR® US Core Implementation Guide STU 6.1.0, June 19, 2023</a></p>\n</li>\n<li><p><strong>USCDI (United States Core Data for Interoperability)</strong><br>  <a href=\"https://isp.healthit.gov/sites/default/files/2022-10/USCDI-Version-3-October-2022-Errata-Final.pdf\">United States Core Data for Interoperability (USCDI), Version 3, October 2022 Errata</a></p>\n</li>\n</ul>\n<p><strong>App Registration</strong>:<br>Developers wishing to integrate must contact the respective provider directly. Foothold Technology will reach out once the respective provider approves access. Each Provider is considered a separate entity and will have its own API URL and registration. Each Provider is responsible for maintaining the rights of their API accounts.</p>\n</body></html>","schema":"https://schema.getpostman.com/json/collection/v2.0.0/collection.json","toc":[],"owner":"44925376","collectionId":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","publishedId":"2sB34ZrQJU","public":true,"customColor":{"top-bar":"FFFFFF","right-sidebar":"303030","highlight":"FF6C37"},"publishDate":"2025-07-01T14:36:10.000Z"},"item":[{"name":"Authentication","item":[{"name":"Token Request - API","event":[{"listen":"test","script":{"id":"2e95466f-dc7b-41e7-a1e7-8f2eeeaad93b","exec":["pm.test(\"Status code is 200\", function () {","    pm.response.to.have.status(200);","});","","var atob = require('atob');","","var template = `","<style type=\"text/css\">","    .tftable {font-size:14px;color:#333333;width:100%;border-width: 1px;border-color: #87ceeb;border-collapse: collapse;}","    .tftable th {font-size:18px;background-color:#009A7C;color: white;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;text-align:left;}","    .tftable tr {background-color:#ffffff;}","    .tftable td {font-size:14px;border-width: 1px;padding: 8px;border-style: solid;border-color: #87ceeb;}","    .tftable tr:hover {background-color:#e0ffff;}","</style>","<h1> Raw Body </h1>","<table class=\"tftable\" border=\"1\">","    <tr>","        <th>Key</th>","        <th>Value</th>","    </tr>","    {{#each response.headers}}","        <tr>","            <td>{{@key}}</td>","            <td>{{this}}</td>","        </tr>","    {{/each}}","</table>","<br>","<h1> JWT Decoded </h1>","<table class=\"tftable\" border=\"1\">","    <tr>","        <th>Key</th>","        <th>Value</th>","    </tr>","    {{#each response.payload}}","        <tr>","            <td>{{@key}}</td>","            <td>{{this}}</td>","        </tr>","    {{/each}}","</table>","`;","","function constructVisualizerPayload() {","    var token = pm.response.json().access_token;","    var parts = token.split('.');","    var decodedPayload = atob(parts[1]);","    var payload = JSON.parse(decodedPayload);","    // Add the token to the collection variables","    pm.collectionVariables.set(\"access_token\",token);","","    return { response: {","        headers: pm.response.json(),","        payload: payload","    }};","}","","pm.visualizer.set(template, constructVisualizerPayload());","",""],"type":"text/javascript","packages":{},"requests":{}}}],"id":"27eb1081-4189-462a-ad6c-40477adbc97b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"noauth","isInherited":false},"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"audience","value":"https://fhir-bulk.footholdtechnology.com","type":"text"},{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"","type":"text"},{"key":"client_secret","value":"","type":"text"}]},"url":"/token","description":"<h3 id=\"token-generation\">Token Generation</h3>\n<p>This endpoint allows you to generate a token by making an HTTP POST request. The returned token is required to retrieve FHIR resources.</p>\n<h4 id=\"request-body\">Request Body</h4>\n<ul>\n<li><p><code>audience</code> (text): The type of audience for the token.</p>\n</li>\n<li><p><code>grant_type</code> (text): The type of grant for the token.</p>\n</li>\n<li><p><code>client_id</code> (text): The client ID for authentication.</p>\n</li>\n<li><p><code>client_secret</code> (text): The client secret for authentication.</p>\n</li>\n</ul>\n<h4 id=\"response\">Response</h4>\n<p>Upon successful execution, the server responds with a status code of 200 and a JSON object containing the following fields:</p>\n<ul>\n<li><p><code>access_token</code>: The generated access token.</p>\n</li>\n<li><p><code>scope</code>: The scope of the token.</p>\n</li>\n<li><p><code>expires_in</code>: The expiration time of the token.</p>\n</li>\n<li><p><code>token_type</code>: The type of the token.</p>\n</li>\n</ul>\n","urlObject":{"path":["token"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"90265ffd-0375-41bf-ae21-ec870f53716e","name":"Success","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"audience","value":"https://fhir-bulk.footholdtechnology.com","type":"text"},{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"","type":"text"},{"key":"client_secret","value":"","type":"text"},{"key":"","value":"","type":"text"}]},"url":"/token"},"status":"OK","code":200,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"{\n    \"access_token\": \"exampleABCadQssw5c\",\n    \"scope\": \"system/*.read\",\n    \"expires_in\": 86400,\n    \"token_type\": \"Bearer\"\n}"},{"id":"5e52f7fe-8b8a-46cf-8374-364f6be42b71","name":"Unauthorized","originalRequest":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"audience","value":"https://fhir-bulk.footholdtechnology.com","type":"text"},{"key":"grant_type","value":"client_credentials","type":"text"},{"key":"client_id","value":"","type":"text"},{"key":"client_secret","value":"","type":"text"},{"key":"","value":"","type":"text"}]},"url":"/token"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"Text","header":[],"cookie":[],"responseTime":null,"body":"Bad Request - {\n    \"error\": \"access_denied\",\n    \"error_description\": \"Unauthorized\"\n}"}],"_postman_id":"27eb1081-4189-462a-ad6c-40477adbc97b"},{"name":"Token Introspection","id":"974e9980-e294-4c0a-97ab-607cfaabdab6","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"token","value":"","type":"text"}]},"url":"/token-info","description":"<h1 id=\"token-information-endpoint\">Token Information Endpoint</h1>\n<p>This endpoint allows you to retrieve information about a token.</p>\n<h2 id=\"request-body\">Request Body</h2>\n<p>The request should be sent as <code>x-www-form-urlencoded</code> with the following parameter:</p>\n<ul>\n<li><code>token</code> (text): The token for which you want to retrieve information.</li>\n</ul>\n<h2 id=\"response\">Response</h2>\n<p>The response will include the details of the token, such as its type, expiration, and any associated user information.</p>\n","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"useBrowser","value":"<use-browser>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"clientSecret","value":""},{"key":"clientId","value":""}]},"isInherited":true,"source":{"_postman_id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","name":"AWARDS FHIR® API Documentation","type":"collection"}},"urlObject":{"path":["token-info"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"974e9980-e294-4c0a-97ab-607cfaabdab6"},{"name":"Token Revoke","id":"19d975a3-63c8-41ce-b646-344e32a911fd","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"client_id","value":"","type":"text"},{"key":"client_secret","value":"","type":"text"},{"key":"token","value":"","type":"text"}]},"url":"/revoke","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"useBrowser","value":"<use-browser>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"clientSecret","value":""},{"key":"clientId","value":""}]},"isInherited":true,"source":{"_postman_id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","name":"AWARDS FHIR® API Documentation","type":"collection"}},"urlObject":{"path":["revoke"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"19d975a3-63c8-41ce-b646-344e32a911fd"}],"id":"982ed1d1-8870-4e2f-9470-f598cacaa670","description":"<p>This folder contains essential requests for obtaining and managing access tokens required to interact with the FHIR API endpoints.</p>\n<p><strong>Token Request - API:</strong></p>\n<p>This request is used to generate a token which is necessary to call any further FHIR resources.</p>\n<p><strong>Note</strong>: When making a request to receive a token, the Content-Type must be of application/x-www-form-urlencoded.</p>\n<p><strong>Token Instrospection:</strong></p>\n<p>This request will return information about the token and it's payload.</p>\n<p><strong>Token Revoke:</strong></p>\n<p>This request will ensures that the users Access and Refresh Tokens cannot be reused</p>\n","_postman_id":"982ed1d1-8870-4e2f-9470-f598cacaa670","auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"useBrowser","value":"<use-browser>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"clientSecret","value":""},{"key":"clientId","value":""}]},"isInherited":true,"source":{"_postman_id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","id":"9b7b4ef7-b2e3-4ada-8c60-77daddb3de6b","name":"AWARDS FHIR® API Documentation","type":"collection"}}},{"name":"FHIR Resources","item":[{"name":"Allergy Intolerance","item":[{"name":"/AllergyIntolerance","id":"13de6586-2b8f-4f8c-999d-82738ca070f2","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/AllergyIntolerance?_revinclude=&patient=","urlObject":{"path":["AllergyIntolerance"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Who the sensitivity is for</p>\n","type":"text/plain"},"key":"patient","value":""}],"variable":[]}},"response":[{"id":"b1427b46-e370-4430-836b-4a16906c6abd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/AllergyIntolerance?patient=ef448721-760b-51b5-8e44-bccf482e8216","host":[""],"path":["AllergyIntolerance"],"query":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n      {\n        \"relation\": \"search\",\n        \"url\": \"https://example.com/fhir/AllergyIntolerance/?patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n      },\n      {\n        \"relation\": \"first\",\n        \"url\": \"https://example.com/fhir/AllergyIntolerance/?patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n      },\n      {\n        \"relation\": \"self\",\n        \"url\": \"https://example.com/fhir/AllergyIntolerance/?patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n      }\n    ],\n    \"entry\": [\n      {\n        \"fullUrl\": \"https://example.com/fhir/AllergyIntolerance/123e4567-e89b-12d3-a456-426614174000\",\n        \"resource\": {\n          \"resourceType\": \"AllergyIntolerance\",\n          \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n          \"meta\": {\n            \"lastUpdated\": \"2026-02-03T16:51:32.371342+00:00\",\n            \"versionId\": \"MTc3MDEzNzQ5MjM3MTM0MjAwMA\"\n          },\n          \"identifier\": [\n            {\n              \"use\": \"official\",\n              \"system\": \"https://footholdtechnology.com/awards\",\n              \"value\": \"13186\",\n              \"assigner\": {\n                \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"type\": \"Organization\",\n                \"display\": \"Foothold Technology\"\n              }\n            }\n          ],\n          \"clinicalStatus\": {\n            \"coding\": [\n              {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                \"code\": \"active\",\n                \"display\": \"active\",\n                \"version\": \"4.3.0\"\n              }\n            ]\n          },\n          \"verificationStatus\": {\n            \"coding\": [\n              {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                \"code\": \"unconfirmed\",\n                \"display\": \"Unconfirmed\"\n              }\n            ]\n          },\n          \"type\": \"allergy\",\n          \"category\": [\"environment\"],\n          \"code\": {\n            \"coding\": [\n              {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\",\n                \"code\": \"unknown\",\n                \"display\": \"Cats\"\n              }\n            ],\n            \"text\": \"Cats\"\n          },\n          \"patient\": {\n            \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n            \"type\": \"Patient\",\n            \"display\": \"100128101\"\n          },\n          \"recordedDate\": \"2025-05-22T17:59:58.000Z\",\n          \"recorder\": {\n            \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Practitioner\",\n            \"display\": \"202342001\"\n          },\n          \"reaction\": [\n            {\n              \"description\": \"Itchy Eyes\",\n              \"manifestation\": [\n                {\n                  \"text\": \"Itchy Eyes\"\n                }\n              ],\n              \"severity\": \"mild\"\n            }\n          ]\n        },\n        \"search\": {\n          \"mode\": \"match\"\n        }\n      }\n    ]\n  }"},{"id":"acbde1ca-335c-4467-9d90-0b0f366bbd60","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/AllergyIntolerance?_revinclude=Provenance:target&patient=d831ec91-c7a3-4a61-9312-7ff0c4a32134","host":[""],"path":["AllergyIntolerance"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"d831ec91-c7a3-4a61-9312-7ff0c4a32134"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"124d040b-301a-48fe-a47a-4c21b1855bab","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/AllergyIntolerance?_revinclude=Provenance:target&patient=d831ec91-c7a3-4a61-9312-7ff0c4a32134","host":[""],"path":["AllergyIntolerance"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"d831ec91-c7a3-4a61-9312-7ff0c4a32134"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'AllergyIntolerance' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"13de6586-2b8f-4f8c-999d-82738ca070f2"},{"name":"/AllergyIntolerance/:id","id":"f0cfd11c-aa23-441d-a661-2695954cc42f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/AllergyIntolerance/:id","urlObject":{"path":["AllergyIntolerance",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"5da2f22b-e9c3-44b7-a016-93a814a59058","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/AllergyIntolerance/:id","host":[""],"path":["AllergyIntolerance",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"AllergyIntolerance\",\n  \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n  \"meta\": {\n    \"lastUpdated\": \"2026-02-03T16:51:32.371342+00:00\",\n    \"versionId\": \"MTc3MDEzNzQ5MjM3MTM0MjAwMA\"\n  },\n  \"identifier\": [\n    {\n      \"use\": \"official\",\n      \"system\": \"https://footholdtechnology.com/awards\",\n      \"value\": \"13186\",\n      \"assigner\": {\n        \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"type\": \"Organization\",\n        \"display\": \"Foothold Technology\"\n      }\n    }\n  ],\n  \"clinicalStatus\": {\n    \"coding\": [\n      {\n        \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n        \"code\": \"active\",\n        \"display\": \"active\",\n        \"version\": \"4.3.0\"\n      }\n    ]\n  },\n  \"verificationStatus\": {\n    \"coding\": [\n      {\n        \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n        \"code\": \"unconfirmed\",\n        \"display\": \"Unconfirmed\"\n      }\n    ]\n  },\n  \"type\": \"allergy\",\n  \"category\": [\"environment\"],\n  \"code\": {\n    \"coding\": [\n      {\n        \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\",\n        \"code\": \"unknown\",\n        \"display\": \"Cats\"\n      }\n    ],\n    \"text\": \"Cats\"\n  },\n  \"patient\": {\n    \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n    \"type\": \"Patient\",\n    \"display\": \"100128101\"\n  },\n  \"recordedDate\": \"2025-05-22T17:59:58.000Z\",\n  \"recorder\": {\n    \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n    \"type\": \"Practitioner\",\n    \"display\": \"202342001\"\n  },\n  \"reaction\": [\n    {\n      \"description\": \"Itchy Eyes\",\n      \"manifestation\": [\n        {\n          \"text\": \"Itchy Eyes\"\n        }\n      ],\n      \"severity\": \"mild\"\n    }\n  ]\n}"},{"id":"9f89083f-4fee-4e90-8c44-02a7341d8ffd","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/AllergyIntolerance/:id","host":[""],"path":["AllergyIntolerance",":id"],"variable":[{"key":"id","value":"d831ec91-c7a3-4a61-9312-7ff0c4a32134","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"25f2ee53-3be5-4579-8c39-811b83225fcf","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/AllergyIntolerance/:id","host":[""],"path":["AllergyIntolerance",":id"],"variable":[{"key":"id","value":"d831ec91-c7a3-4a61-9312-7ff0c4a32134","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'AllergyIntolerance' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"f0cfd11c-aa23-441d-a661-2695954cc42f"},{"name":"Allergy Intolerances Search using POST","id":"e3aa7db7-8199-45d0-b225-c415c9fe17bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>(Required) Who care plan is for. Important! The data form of the Request body must be like (example): patient=11076771</p>\n"}]},"url":"/AllergyIntolerance/_search","description":"<p>This interaction searches a set of AllergyIntolerances based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/allergyintolerance.html\">FHIR documentation for AllergyIntolerance.</a></p><p></p>\n","urlObject":{"path":["AllergyIntolerance","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"669e391a-fd37-4b15-87e0-aadabaf90888","name":"AllergyIntolerance bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]},"url":"/AllergyIntolerance/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n      {\n        \"relation\": \"search\",\n        \"url\": \"https://example.com/fhir/AllergyIntolerance/?patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n      },\n      {\n        \"relation\": \"first\",\n        \"url\": \"https://example.com/fhir/AllergyIntolerance/?patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n      },\n      {\n        \"relation\": \"self\",\n        \"url\": \"https://example.com/fhir/AllergyIntolerance/?patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n      }\n    ],\n    \"entry\": [\n      {\n        \"fullUrl\": \"https://example.com/fhir/AllergyIntolerance/123e4567-e89b-12d3-a456-426614174000\",\n        \"resource\": {\n          \"resourceType\": \"AllergyIntolerance\",\n          \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n          \"meta\": {\n            \"lastUpdated\": \"2026-02-03T16:51:32.371342+00:00\",\n            \"versionId\": \"MTc3MDEzNzQ5MjM3MTM0MjAwMA\"\n          },\n          \"identifier\": [\n            {\n              \"use\": \"official\",\n              \"system\": \"https://footholdtechnology.com/awards\",\n              \"value\": \"13186\",\n              \"assigner\": {\n                \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"type\": \"Organization\",\n                \"display\": \"Foothold Technology\"\n              }\n            }\n          ],\n          \"clinicalStatus\": {\n            \"coding\": [\n              {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-clinical\",\n                \"code\": \"active\",\n                \"display\": \"active\",\n                \"version\": \"4.3.0\"\n              }\n            ]\n          },\n          \"verificationStatus\": {\n            \"coding\": [\n              {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/allergyintolerance-verification\",\n                \"code\": \"unconfirmed\",\n                \"display\": \"Unconfirmed\"\n              }\n            ]\n          },\n          \"type\": \"allergy\",\n          \"category\": [\"environment\"],\n          \"code\": {\n            \"coding\": [\n              {\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\",\n                \"code\": \"unknown\",\n                \"display\": \"Cats\"\n              }\n            ],\n            \"text\": \"Cats\"\n          },\n          \"patient\": {\n            \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n            \"type\": \"Patient\",\n            \"display\": \"100128101\"\n          },\n          \"recordedDate\": \"2025-05-22T17:59:58.000Z\",\n          \"recorder\": {\n            \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Practitioner\",\n            \"display\": \"202342001\"\n          },\n          \"reaction\": [\n            {\n              \"description\": \"Itchy Eyes\",\n              \"manifestation\": [\n                {\n                  \"text\": \"Itchy Eyes\"\n                }\n              ],\n              \"severity\": \"mild\"\n            }\n          ]\n        },\n        \"search\": {\n          \"mode\": \"match\"\n        }\n      }\n    ]\n  }"},{"id":"bddac81a-d432-4c4d-8deb-693ddd8a13ea","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]},"url":"/AllergyIntolerance/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"7cbddbfb-33c8-4cb3-a8bd-6caf959673d0","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]},"url":"/AllergyIntolerance/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'AllergyIntolerance' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"e3aa7db7-8199-45d0-b225-c415c9fe17bb"}],"id":"52c03a0b-2d53-490a-a9b1-328603348c9c","description":"<p>Risk of harmful or undesirable, physiological response which is unique to an individual and associated with exposure to a substance.</p>\n<p><strong>The following profiles are supported</strong>:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-allergyintolerance.html\">US Core AllergyIntolerance Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>USCore Data Element</strong></th>\n<th><strong>FHIR Resource Field</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Substance (Drug class)</td>\n<td>AllergyIntolerance.code (where system = \"<a href=\"http://snomed.info/sct\">http://snomed.info/sct\"</a>)</td>\n</tr>\n<tr>\n<td>Substance (Medication)</td>\n<td>AllergyIntolerance.code (where system = \"<a href=\"http://www.nlm.nih.gov/research/umls/rxnorm\">http://www.nlm.nih.gov/research/umls/rxnorm\"</a>)</td>\n</tr>\n<tr>\n<td>Reaction</td>\n<td>AllergyIntolerance.reaction</td>\n</tr>\n</tbody>\n</table>\n</div><div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>AWARDS Field</strong></th>\n<th><strong>FHIR Resource Field</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Type</td>\n<td>type (allergy or intolerance) + category</td>\n</tr>\n<tr>\n<td>Onset Date</td>\n<td>recordedDate</td>\n</tr>\n<tr>\n<td>Status</td>\n<td>clinicalStatus</td>\n</tr>\n<tr>\n<td>Substance</td>\n<td>code.text  <br />code.coding (rxnorm is available)</td>\n</tr>\n<tr>\n<td>Reaction</td>\n<td>reaction.description</td>\n</tr>\n<tr>\n<td>Severity</td>\n<td>reaction.severity</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"52c03a0b-2d53-490a-a9b1-328603348c9c","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Capability Statement","item":[{"name":"Capability Statement","id":"bb61ebd4-3e29-4078-a47f-79866bc5c9d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/metadata","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["metadata"],"host":[""],"query":[],"variable":[]}},"response":[],"_postman_id":"bb61ebd4-3e29-4078-a47f-79866bc5c9d7"}],"id":"98763c3d-6c0c-4ea3-a8c3-764e11457d98","_postman_id":"98763c3d-6c0c-4ea3-a8c3-764e11457d98","description":"","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Care Plan","item":[{"name":"/CarePlan","id":"95a60fd3-5a1e-4a5f-8bee-3fc5d7527927","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/CarePlan?_revinclude=&category=&patient=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["CarePlan"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Type of plan</p>\n","type":"text/plain"},"key":"category","value":""},{"description":{"content":"<p>Who the care plan is for</p>\n","type":"text/plain"},"key":"patient","value":""}],"variable":[]}},"response":[{"id":"3ea028f5-e360-46ba-88fa-229478d0b984","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CarePlan?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216","host":[""],"path":["CarePlan"],"query":[{"key":"category","value":"assess-plan"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 2,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/CarePlan/?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/CarePlan/?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/CarePlan/?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/CarePlan/123e4567-e89b-12d3-a456-426614174000\",\n      \"resource\": {\n        \"resourceType\": \"CarePlan\",\n        \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-03T17:40:09.281856+00:00\",\n          \"versionId\": \"MTc3MDE0MDQwOTI4MTg1NjAwMA\"\n        },\n        \"identifier\": [\n          {\n            \"use\": \"official\",\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"value\": \"1038\"\n          }\n        ],\n        \"status\": \"active\",\n        \"intent\": \"plan\",\n        \"category\": [\n          {\n            \"coding\": [\n              {\n                \"system\": \"http://snomed.info/sct\",\n                \"code\": \"734163000\",\n                \"display\": \"Care plan\"\n              }\n            ]\n          },\n          {\n            \"coding\": [\n              {\n                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n                \"code\": \"assess-plan\",\n                \"display\": \"Assessment and Plan of Treatment\"\n              }\n            ]\n          }\n        ],\n        \"title\": \"Care Plan\",\n        \"subject\": {\n          \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n          \"type\": \"Patient\"\n        },\n        \"period\": {\n          \"start\": \"2022-11-24T00:00:00-05:00\"\n        },\n        \"created\": \"2022-11-15T20:28:44.000Z\",\n        \"author\": {\n          \"reference\": \"Practitioner/987fcdeb-51a2-43d7-b789-123456789abc\",\n          \"type\": \"Practitioner\"\n        },\n        \"text\": {\n          \"status\": \"additional\",\n          \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">empty</div>\"\n        }\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"667da1a5-ca12-4173-9b9c-4bc133e3ce94","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CarePlan?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216","host":[""],"path":["CarePlan"],"query":[{"key":"category","value":"assess-plan"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"8c099385-4686-4f3d-b809-55630d29371b","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"11076771","description":"(Required) Who care plan is for. Important! The data form of the Request body must be like (example): patient=11076771"}]},"url":{"raw":"/CarePlan?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216","host":[""],"path":["CarePlan"],"query":[{"key":"category","value":"assess-plan"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"}]}},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'CarePlan' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"95a60fd3-5a1e-4a5f-8bee-3fc5d7527927"},{"name":"/CarePlan/:id","id":"f8df4c49-bd38-4f74-a73e-a28c2639f316","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/CarePlan/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["CarePlan",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"e6e98264-7999-416c-8c91-8668997eda39","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CarePlan/:id","host":[""],"path":["CarePlan",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"CarePlan\",\n  \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n  \"meta\": {\n    \"lastUpdated\": \"2026-02-03T17:40:09.281856+00:00\",\n    \"versionId\": \"MTc3MDE0MDQwOTI4MTg1NjAwMA\"\n  },\n  \"identifier\": [\n    {\n      \"use\": \"official\",\n      \"system\": \"https://footholdtechnology.com/awards\",\n      \"value\": \"1038\"\n    }\n  ],\n  \"status\": \"active\",\n  \"intent\": \"plan\",\n  \"category\": [\n    {\n      \"coding\": [\n        {\n          \"system\": \"http://snomed.info/sct\",\n          \"code\": \"734163000\",\n          \"display\": \"Care plan\"\n        }\n      ]\n    },\n    {\n      \"coding\": [\n        {\n          \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n          \"code\": \"assess-plan\",\n          \"display\": \"Assessment and Plan of Treatment\"\n        }\n      ]\n    }\n  ],\n  \"title\": \"Care Plan\",\n  \"subject\": {\n    \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n    \"type\": \"Patient\"\n  },\n  \"period\": {\n    \"start\": \"2022-11-24T00:00:00-05:00\"\n  },\n  \"created\": \"2022-11-15T20:28:44.000Z\",\n  \"author\": {\n    \"reference\": \"Practitioner/987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"type\": \"Practitioner\"\n  },\n  \"text\": {\n    \"status\": \"additional\",\n    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">empty</div>\"\n  }\n}\n"},{"id":"5b620203-55b3-4a4e-bcf5-e89e771e208e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CarePlan/:id","host":[""],"path":["CarePlan",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"5e947649-a259-4f63-8bdd-e20fe2fec6b2","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CarePlan/:id","host":[""],"path":["CarePlan",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'CarePlan' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"f8df4c49-bd38-4f74-a73e-a28c2639f316"},{"name":"Care Plans Search using POST","id":"da240788-9645-4d14-a515-2128a38ddb27","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"","description":"<p>(Required) Type of plan</p>\n"},{"key":"patient","value":"","description":"<p>(Required) Who care plan is for</p>\n"}]},"url":"/CarePlan/_search","description":"<p>This interaction searches a set of CarePlans based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/careplan.html\">FHIR documentation for CarePlan.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["CarePlan","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"df369767-a6f9-4d8a-9e6b-bf3f40f88936","name":"CarePlan bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"assess-plan","description":"Type of plan"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216","description":"Who care plan is for"}]},"url":"/CarePlan/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 2,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/CarePlan/?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/CarePlan/?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/CarePlan/?category=assess-plan&patient=ef448721-760b-51b5-8e44-bccf482e8216\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/CarePlan/123e4567-e89b-12d3-a456-426614174000\",\n      \"resource\": {\n        \"resourceType\": \"CarePlan\",\n        \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-03T17:40:09.281856+00:00\",\n          \"versionId\": \"MTc3MDE0MDQwOTI4MTg1NjAwMA\"\n        },\n        \"identifier\": [\n          {\n            \"use\": \"official\",\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"value\": \"1038\"\n          }\n        ],\n        \"status\": \"active\",\n        \"intent\": \"plan\",\n        \"category\": [\n          {\n            \"coding\": [\n              {\n                \"system\": \"http://snomed.info/sct\",\n                \"code\": \"734163000\",\n                \"display\": \"Care plan\"\n              }\n            ]\n          },\n          {\n            \"coding\": [\n              {\n                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\",\n                \"code\": \"assess-plan\",\n                \"display\": \"Assessment and Plan of Treatment\"\n              }\n            ]\n          }\n        ],\n        \"title\": \"Care Plan\",\n        \"subject\": {\n          \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n          \"type\": \"Patient\"\n        },\n        \"period\": {\n          \"start\": \"2022-11-24T00:00:00-05:00\"\n        },\n        \"created\": \"2022-11-15T20:28:44.000Z\",\n        \"author\": {\n          \"reference\": \"Practitioner/987fcdeb-51a2-43d7-b789-123456789abc\",\n          \"type\": \"Practitioner\"\n        },\n        \"text\": {\n          \"status\": \"additional\",\n          \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">empty</div>\"\n        }\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"d7bdf475-d2d0-4e34-a5c9-686865428ecc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"assess-plan","description":"Type of plan"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216","description":"Who care plan is for"}]},"url":"/CarePlan/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"c02f7ad4-42d1-4e11-8b59-245323aae2c8","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216","type":"text","uuid":"54ffda67-a1da-4f5d-8852-2dd60c2637d2"}]},"url":"/CarePlan/_search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'CarePlan' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"da240788-9645-4d14-a515-2128a38ddb27"}],"id":"93e7d0d8-08a8-480a-82d7-9d8bf7ef598d","description":"<p>Describes the intention of how one or more practitioners intend to deliver care for a particular patient, group or community for a period of time, possibly limited to care for a specific condition or set of conditions.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careplan.html\">US Core CarePlan Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Assessment and Plan of Treatment</td>\n<td>CarePlan.category.system = <a href=\"http://hl7.org/fhir/us/core/CodeSystem/careplan-category\">http://hl7.org/fhir/us/core/CodeSystem/careplan-category</a>  <br />CarePlan.category.coding = assess-plan</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"93e7d0d8-08a8-480a-82d7-9d8bf7ef598d","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Care Team","item":[{"name":"/CareTeam","id":"90c73e0c-da43-4eda-9411-8eed1d451d52","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/CareTeam?_revinclude=&patient=&status=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["CareTeam"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Who care team is for</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>proposed | active | suspended | inactive | entered-in-error</p>\n","type":"text/plain"},"key":"status","value":""}],"variable":[]}},"response":[{"id":"019a15fa-a93e-4e55-8a53-5f706674ca84","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CareTeam?_revinclude=Provenance:target&patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active","host":[""],"path":["CareTeam"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"},{"key":"status","value":"active"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 1,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/CareTeam/?patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/CareTeam/?patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/CareTeam/?patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/CareTeam/123e4567-e89b-12d3-a456-426614174000\",\n      \"resource\": {\n        \"resourceType\": \"CareTeam\",\n        \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-04T05:46:48.222811+00:00\",\n          \"versionId\": \"MTc3MDE4NDAwODIyMjgxMTAwMA\"\n        },\n        \"identifier\": [\n          {\n            \"use\": \"official\",\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"value\": \"100128101\",\n            \"assigner\": {\n              \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n              \"type\": \"Organization\",\n              \"display\": \"Foothold Technology\"\n            }\n          }\n        ],\n        \"status\": \"active\",\n        \"category\": [\n          {\n            \"coding\": [\n              {\n                \"system\": \"http://loinc.org\",\n                \"code\": \"86744-0\",\n                \"display\": \"Care team\"\n              }\n            ],\n            \"text\": \"Care team\"\n          }\n        ],\n        \"name\": \"Care Team\",\n        \"subject\": {\n          \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n          \"type\": \"Patient\",\n          \"display\": \"100128101\"\n        },\n        \"managingOrganization\": [\n          {\n            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Organization\",\n            \"display\": \"demodb\"\n          }\n        ],\n        \"participant\": [\n          {\n            \"role\": [\n              {\n                \"coding\": [\n                  {\n                    \"system\": \"http://snomed.info/sct\",\n                    \"code\": \"125676002\",\n                    \"display\": \"Person\"\n                  }\n                ]\n              }\n            ],\n            \"member\": {\n              \"reference\": \"RelatedPerson/789abcde-f012-3456-7890-abcdef123456\",\n              \"type\": \"RelatedPerson\",\n              \"display\": \"704\"\n            }\n          }\n        ]\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"ec5ad5d9-2970-46aa-bb6c-8f33ad255dae","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CareTeam?_revinclude=Provenance:target&patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active","host":[""],"path":["CareTeam"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"},{"key":"status","value":"active"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"13c4d40a-785a-492b-a804-4c85ffd5e2f4","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CareTeam?_revinclude=Provenance:target&patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active","host":[""],"path":["CareTeam"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216"},{"key":"status","value":"active"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'CareTeam' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"90c73e0c-da43-4eda-9411-8eed1d451d52"},{"name":"/CareTeam/:id","id":"459e538f-4f89-4fcd-a80b-2b03eca1435f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/CareTeam/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["CareTeam",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"d03b536b-91a7-46fd-826d-0aa0a8a46989","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CareTeam/:id","host":[""],"path":["CareTeam",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"CareTeam\",\n  \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n  \"meta\": {\n    \"lastUpdated\": \"2026-02-04T05:46:48.222811+00:00\",\n    \"versionId\": \"MTc3MDE4NDAwODIyMjgxMTAwMA\"\n  },\n  \"identifier\": [\n    {\n      \"use\": \"official\",\n      \"system\": \"https://footholdtechnology.com/awards\",\n      \"value\": \"100128101\",\n      \"assigner\": {\n        \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"type\": \"Organization\",\n        \"display\": \"Foothold Technology\"\n      }\n    }\n  ],\n  \"status\": \"active\",\n  \"category\": [\n    {\n      \"coding\": [\n        {\n          \"system\": \"http://loinc.org\",\n          \"code\": \"86744-0\",\n          \"display\": \"Care team\"\n        }\n      ],\n      \"text\": \"Care team\"\n    }\n  ],\n  \"name\": \"Care Team\",\n  \"subject\": {\n    \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n    \"type\": \"Patient\",\n    \"display\": \"100128101\"\n  },\n  \"managingOrganization\": [\n    {\n      \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n      \"type\": \"Organization\",\n      \"display\": \"demodb\"\n    }\n  ],\n  \"participant\": [\n    {\n      \"role\": [\n        {\n          \"coding\": [\n            {\n              \"system\": \"http://snomed.info/sct\",\n              \"code\": \"125676002\",\n              \"display\": \"Person\"\n            }\n          ]\n        }\n      ],\n      \"member\": {\n        \"reference\": \"RelatedPerson/789abcde-f012-3456-7890-abcdef123456\",\n        \"type\": \"RelatedPerson\",\n        \"display\": \"704\"\n      }\n    }\n  ]\n}"},{"id":"04463d37-c908-4e3a-b865-9ab31436ad5d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CareTeam/:id","host":[""],"path":["CareTeam",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"bd205838-e67b-4a28-80f7-d601c7ab3af2","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/CareTeam/:id","host":[""],"path":["CareTeam",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'CareTeam' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"459e538f-4f89-4fcd-a80b-2b03eca1435f"},{"name":"Care Team Search using POST","id":"c5b8581b-e915-4a89-bc5f-aa2d9b23da78","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>Who care plan is for</p>\n"},{"key":"status","value":"","description":"<p>proposed | active | suspended | inactive | entered-in-error</p>\n"}]},"url":"/CareTeam/_search","description":"<p>This interaction searches a set of CareTeam based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/careteam.html\">FHIR documentation for CareTeam.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["CareTeam","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"2cce7a81-b6f5-412b-87c4-e1f3539b8131","name":"CareTeam bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216","description":"Who care plan is for"},{"key":"status","value":"active","description":"proposed | active | suspended | inactive | entered-in-error"}]},"url":"/CareTeam/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 1,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/CareTeam/?patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/CareTeam/?patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/CareTeam/?patient=ef448721-760b-51b5-8e44-bccf482e8216&status=active\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/CareTeam/123e4567-e89b-12d3-a456-426614174000\",\n      \"resource\": {\n        \"resourceType\": \"CareTeam\",\n        \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-04T05:46:48.222811+00:00\",\n          \"versionId\": \"MTc3MDE4NDAwODIyMjgxMTAwMA\"\n        },\n        \"identifier\": [\n          {\n            \"use\": \"official\",\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"value\": \"100128101\",\n            \"assigner\": {\n              \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n              \"type\": \"Organization\",\n              \"display\": \"Foothold Technology\"\n            }\n          }\n        ],\n        \"status\": \"active\",\n        \"category\": [\n          {\n            \"coding\": [\n              {\n                \"system\": \"http://loinc.org\",\n                \"code\": \"86744-0\",\n                \"display\": \"Care team\"\n              }\n            ],\n            \"text\": \"Care team\"\n          }\n        ],\n        \"name\": \"Care Team\",\n        \"subject\": {\n          \"reference\": \"Patient/ef448721-760b-51b5-8e44-bccf482e8216\",\n          \"type\": \"Patient\",\n          \"display\": \"100128101\"\n        },\n        \"managingOrganization\": [\n          {\n            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Organization\",\n            \"display\": \"demodb\"\n          }\n        ],\n        \"participant\": [\n          {\n            \"role\": [\n              {\n                \"coding\": [\n                  {\n                    \"system\": \"http://snomed.info/sct\",\n                    \"code\": \"125676002\",\n                    \"display\": \"Person\"\n                  }\n                ]\n              }\n            ],\n            \"member\": {\n              \"reference\": \"RelatedPerson/789abcde-f012-3456-7890-abcdef123456\",\n              \"type\": \"RelatedPerson\",\n              \"display\": \"704\"\n            }\n          }\n        ]\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"f6f165ba-0d14-4f9f-9532-427444bd4010","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"ef448721-760b-51b5-8e44-bccf482e8216","description":"Who care plan is for"},{"key":"status","value":"active","description":"proposed | active | suspended | inactive | entered-in-error"}]},"url":"/CareTeam/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"da48975e-9b4b-494c-95c6-12f8d30f8dd8","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"11076771","description":"Who care plan is for"},{"key":"status","value":"active","description":"proposed | active | suspended | inactive | entered-in-error"}]},"url":"/CareTeam/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'CareTeam' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"c5b8581b-e915-4a89-bc5f-aa2d9b23da78"}],"id":"c242232b-80b8-4f94-abcb-4fd8317a96da","description":"<p>The Care Team includes all the people and organizations who plan to participate in the coordination and delivery of care for a patient.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-careteam.html\">US Core CareTeam Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Care Team</td>\n<td>CareTeam.participant[].member</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"c242232b-80b8-4f94-abcb-4fd8317a96da","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Condition","item":[{"name":"/Condition","id":"1457e864-0177-4593-89f0-19ee1a00b700","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Condition?_revinclude=&patient=&category","description":"<p>A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-careplan.html\"></a><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-condition.html\">US Core Condition Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Health Concerns</td>\n<td>Condition.category.coding = health-concern</td>\n</tr>\n</tbody>\n</table>\n</div>","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Condition"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Who condition is for</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>encounter-diagnosis | problem-list-item | health-concern</p>\n","type":"text/plain"},"key":"category","value":null}],"variable":[]}},"response":[{"id":"8f45ca4d-8b50-4eb3-ae1f-11e4422e96a2","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Condition?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Condition"],"query":[{"key":"category","value":"encounter-diagnosis"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 1,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/Condition/?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/Condition/?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/Condition/?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/Condition/987fcdeb-51a2-43d7-b789-123456789abc\",\n      \"resource\": {\n        \"abatementDateTime\": \"2026-02-04T00:00:00-05:00\",\n        \"category\": [\n          {\n            \"coding\": [\n              {\n                \"code\": \"encounter-diagnosis\",\n                \"display\": \"Encounter Diagnosis\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n              }\n            ]\n          }\n        ],\n        \"clinicalStatus\": {\n          \"coding\": [\n            {\n              \"code\": \"resolved\",\n              \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n            }\n          ]\n        },\n        \"code\": {\n          \"coding\": [\n            {\n              \"code\": \"F90.2\",\n              \"display\": \"Attention-deficit hyperactivity disorder, combined type\",\n              \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n            }\n          ],\n          \"text\": \"Attention-deficit hyperactivity disorder, combined type\"\n        },\n        \"encounter\": {\n          \"display\": \"145\",\n          \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n          \"type\": \"Encounter\"\n        },\n        \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"identifier\": [\n          {\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"5603\"\n          }\n        ],\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-04T06:00:19.416400+00:00\",\n          \"versionId\": \"MTc3MDE4NDgxOTQxNjQwMDAwMA\"\n        },\n        \"recordedDate\": \"2025-11-19T00:00:00-05:00\",\n        \"resourceType\": \"Condition\",\n        \"subject\": {\n          \"display\": \"100128101\",\n          \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n          \"type\": \"Patient\"\n        }\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"d8808fe5-4120-4bd9-998b-d4fb7f75f22b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Condition?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Condition"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"666883b3-29ab-46ed-b80a-813a57b15c21","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Condition?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Condition"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Condition' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"1457e864-0177-4593-89f0-19ee1a00b700"},{"name":"/Condition/:id","id":"766319ab-bec5-4e11-bdd2-45b31f05bf7a","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Condition/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Condition",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"86d58652-327c-4968-b4ce-3676c788e257","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Condition/:id","host":[""],"path":["Condition",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"fullUrl\": \"https://example.com/fhir/Condition/987fcdeb-51a2-43d7-b789-123456789abc\",\n  \"resource\": {\n    \"abatementDateTime\": \"2026-02-04T00:00:00-05:00\",\n    \"category\": [\n      {\n        \"coding\": [\n          {\n            \"code\": \"encounter-diagnosis\",\n            \"display\": \"Encounter Diagnosis\",\n            \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n          }\n        ]\n      }\n    ],\n    \"clinicalStatus\": {\n      \"coding\": [\n        {\n          \"code\": \"resolved\",\n          \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n        }\n      ]\n    },\n    \"code\": {\n      \"coding\": [\n        {\n          \"code\": \"F90.2\",\n          \"display\": \"Attention-deficit hyperactivity disorder, combined type\",\n          \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n        }\n      ],\n      \"text\": \"Attention-deficit hyperactivity disorder, combined type\"\n    },\n    \"encounter\": {\n      \"display\": \"145\",\n      \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n      \"type\": \"Encounter\"\n    },\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n      {\n        \"system\": \"https://footholdtechnology.com/awards\",\n        \"use\": \"official\",\n        \"value\": \"5603\"\n      }\n    ],\n    \"meta\": {\n      \"lastUpdated\": \"2026-02-04T06:00:19.416400+00:00\",\n      \"versionId\": \"MTc3MDE4NDgxOTQxNjQwMDAwMA\"\n    },\n    \"recordedDate\": \"2025-11-19T00:00:00-05:00\",\n    \"resourceType\": \"Condition\",\n    \"subject\": {\n      \"display\": \"100128101\",\n      \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n      \"type\": \"Patient\"\n    }\n  },\n  \"search\": {\n    \"mode\": \"match\"\n  }\n}"},{"id":"d6ab521b-d502-4d6e-a693-021c40bf3328","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Condition/:id","host":[""],"path":["Condition",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"c84f1e78-f4f2-4cfa-b1f7-34efd45d5454","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Condition/:id","host":[""],"path":["Condition",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Condition' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"766319ab-bec5-4e11-bdd2-45b31f05bf7a"},{"name":"Conditions Search using POST","id":"453d5ace-493c-4bc8-83fe-db0710a938b9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>Who condition is for</p>\n"},{"key":"category","value":"","description":"<p>encounter-diagnosis | problem-list-item | health-concern</p>\n","type":"text","uuid":"4ae8cfad-a7ed-46d2-bb5b-9c7d21dc0809"}]},"url":"/Condition/_search","description":"<p>This interaction searches a set of Conditions based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/condition.html\">FHIR documentation for Condition.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Condition","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"aac0aaeb-3355-4c92-bb2d-93e84e6196c1","name":"Condition bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"encounter-diagnosis","type":"text","uuid":"75ddde76-3b2c-4cf5-96e2-fb2c842b2e32"}]},"url":"/Condition/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 1,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/Condition/?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/Condition/?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/Condition/?category=encounter-diagnosis&patient=123e4567-e89b-12d3-a456-426614174000\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/Condition/987fcdeb-51a2-43d7-b789-123456789abc\",\n      \"resource\": {\n        \"abatementDateTime\": \"2026-02-04T00:00:00-05:00\",\n        \"category\": [\n          {\n            \"coding\": [\n              {\n                \"code\": \"encounter-diagnosis\",\n                \"display\": \"Encounter Diagnosis\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/condition-category\"\n              }\n            ]\n          }\n        ],\n        \"clinicalStatus\": {\n          \"coding\": [\n            {\n              \"code\": \"resolved\",\n              \"system\": \"http://terminology.hl7.org/CodeSystem/condition-clinical\"\n            }\n          ]\n        },\n        \"code\": {\n          \"coding\": [\n            {\n              \"code\": \"F90.2\",\n              \"display\": \"Attention-deficit hyperactivity disorder, combined type\",\n              \"system\": \"http://hl7.org/fhir/sid/icd-10\"\n            }\n          ],\n          \"text\": \"Attention-deficit hyperactivity disorder, combined type\"\n        },\n        \"encounter\": {\n          \"display\": \"145\",\n          \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n          \"type\": \"Encounter\"\n        },\n        \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"identifier\": [\n          {\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"5603\"\n          }\n        ],\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-04T06:00:19.416400+00:00\",\n          \"versionId\": \"MTc3MDE4NDgxOTQxNjQwMDAwMA\"\n        },\n        \"recordedDate\": \"2025-11-19T00:00:00-05:00\",\n        \"resourceType\": \"Condition\",\n        \"subject\": {\n          \"display\": \"100128101\",\n          \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n          \"type\": \"Patient\"\n        }\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"1d619815-3159-42b6-b45f-e548fffbef7c","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]},"url":"/Condition/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"6afea462-f8c5-48fd-b945-84a61f3edb0f","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Condition/_search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Condition' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"453d5ace-493c-4bc8-83fe-db0710a938b9"}],"id":"17d5ebfb-b6bf-4127-bae7-99c2606f9b9a","description":"<p>A clinical condition, problem, diagnosis, or other event, situation, issue, or clinical concept that has risen to a level of concern. This resource is used to record detailed information about conditions, problems or diagnoses recognized by a clinician.</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-encounter-diagnosis.html\">US Core Condition Encounter Diagnosis Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-condition-problems-health-concerns.html\">US Core Condition Problems and Health Concerns Profile</a></p>\n</li>\n</ul>\n","_postman_id":"17d5ebfb-b6bf-4127-bae7-99c2606f9b9a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Coverage","item":[{"name":"/Coverage","id":"e3e860c9-e4f8-4ecc-b7d9-abd89e41817f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Coverage?patient=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Coverage"],"host":[""],"query":[{"description":{"content":"<p>Who coverage is for</p>\n","type":"text/plain"},"key":"patient","value":""}],"variable":[]}},"response":[{"id":"afa8054a-1ee3-4eee-80cb-1d5a9ee7936a","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Coverage?patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Coverage"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 1,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/Coverage/?patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/Coverage/?patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/Coverage/?patient=123e4567-e89b-12d3-a456-426614174000\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/Coverage/987fcdeb-51a2-43d7-b789-123456789abc\",\n      \"resource\": {\n        \"beneficiary\": {\n          \"display\": \"100128101\",\n          \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n          \"type\": \"Patient\"\n        },\n        \"class\": [\n          {\n            \"name\": \"1 to 1 Support\",\n            \"type\": {\n              \"coding\": [\n                {\n                  \"code\": \"plan\",\n                  \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\"\n                }\n              ]\n            },\n            \"value\": \"test1\"\n          }\n        ],\n        \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"identifier\": [\n          {\n            \"type\": {\n              \"coding\": [\n                {\n                  \"code\": \"MB\",\n                  \"display\": \"Member Number\",\n                  \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n                }\n              ],\n              \"text\": \"test1\"\n            },\n            \"value\": \"test1\"\n          }\n        ],\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-02T04:42:27.150528+00:00\",\n          \"versionId\": \"MTc3MDAwNzM0NzE1MDUyODAwMA\"\n        },\n        \"payor\": [\n          {\n            \"display\": \"1 to 1 Support\",\n            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Organization\"\n          }\n        ],\n        \"period\": {\n          \"start\": \"2022-12-01T05:00:00.000Z\"\n        },\n        \"relationship\": {\n          \"coding\": [\n            {\n              \"code\": \"self\",\n              \"display\": \"Self\",\n              \"system\": \"http://terminology.hl7.org/CodeSystem/subscriber-relationship\"\n            }\n          ]\n        },\n        \"resourceType\": \"Coverage\",\n        \"status\": \"active\",\n        \"type\": {\n          \"text\": \"1 to 1 Support\"\n        }\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"57b8fc68-d99c-44e5-adec-f792645f37e8","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Coverage?patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Coverage"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"970b8f51-76ad-4886-8e53-454708741fd9","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Coverage?patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Coverage"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Coverage' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"e3e860c9-e4f8-4ecc-b7d9-abd89e41817f"},{"name":"/Coverage/:id","id":"fa04d572-ceb7-40a5-b490-d7dd0893f841","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Coverage/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Coverage",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"e55cfb20-66e8-49f8-80bc-1513dda22cf6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Coverage/:id","host":[""],"path":["Coverage",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"beneficiary\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    },\n    \"class\": [\n        {\n            \"name\": \"1 to 1 Support\",\n            \"type\": {\n                \"coding\": [\n                    {\n                        \"code\": \"plan\",\n                        \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\"\n                    }\n                ]\n            },\n            \"value\": \"test1\"\n        }\n    ],\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"type\": {\n                \"coding\": [\n                    {\n                        \"code\": \"MB\",\n                        \"display\": \"Member Number\",\n                        \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n                    }\n                ],\n                \"text\": \"test1\"\n            },\n            \"value\": \"test1\"\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-02T04:42:27.150528+00:00\",\n        \"versionId\": \"MTc3MDAwNzM0NzE1MDUyODAwMA\"\n    },\n    \"payor\": [\n        {\n            \"display\": \"1 to 1 Support\",\n            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Organization\"\n        }\n    ],\n    \"period\": {\n        \"start\": \"2022-12-01T05:00:00.000Z\"\n    },\n    \"relationship\": {\n        \"coding\": [\n            {\n                \"code\": \"self\",\n                \"display\": \"Self\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/subscriber-relationship\"\n            }\n        ]\n    },\n    \"resourceType\": \"Coverage\",\n    \"status\": \"active\",\n    \"type\": {\n        \"text\": \"1 to 1 Support\"\n    }\n}"},{"id":"d2d10b4e-48a6-4cb2-818d-066024c9432e","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Coverage/:id","host":[""],"path":["Coverage",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"4423b903-e1d2-4448-bbeb-8bd27f6a3038","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Coverage/:id","host":[""],"path":["Coverage",":id"],"variable":[{"key":"id","value":""}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Coverage' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"fa04d572-ceb7-40a5-b490-d7dd0893f841"},{"name":"Coverage Search using POST","id":"07667e46-e4f5-4adf-9dab-bf52294b45e8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>Who coverage is for</p>\n","type":"text","uuid":"182e2ef5-ff01-48f6-b7c4-7646f6699cfc"}]},"url":"/Coverage/_search","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Coverage","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"cc91af05-1a88-4a1d-b34f-d120cf30c94d","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"2fa02468-e4bc-4517-814d-bc222fde4cfa"}]},"url":"/Coverage/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"Bundle\",\n  \"type\": \"searchset\",\n  \"total\": 1,\n  \"link\": [\n    {\n      \"relation\": \"search\",\n      \"url\": \"https://example.com/fhir/Coverage/?patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"first\",\n      \"url\": \"https://example.com/fhir/Coverage/?patient=123e4567-e89b-12d3-a456-426614174000\"\n    },\n    {\n      \"relation\": \"self\",\n      \"url\": \"https://example.com/fhir/Coverage/?patient=123e4567-e89b-12d3-a456-426614174000\"\n    }\n  ],\n  \"entry\": [\n    {\n      \"fullUrl\": \"https://example.com/fhir/Coverage/987fcdeb-51a2-43d7-b789-123456789abc\",\n      \"resource\": {\n        \"beneficiary\": {\n          \"display\": \"100128101\",\n          \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n          \"type\": \"Patient\"\n        },\n        \"class\": [\n          {\n            \"name\": \"1 to 1 Support\",\n            \"type\": {\n              \"coding\": [\n                {\n                  \"code\": \"plan\",\n                  \"system\": \"http://terminology.hl7.org/CodeSystem/coverage-class\"\n                }\n              ]\n            },\n            \"value\": \"test1\"\n          }\n        ],\n        \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"identifier\": [\n          {\n            \"type\": {\n              \"coding\": [\n                {\n                  \"code\": \"MB\",\n                  \"display\": \"Member Number\",\n                  \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n                }\n              ],\n              \"text\": \"test1\"\n            },\n            \"value\": \"test1\"\n          }\n        ],\n        \"meta\": {\n          \"lastUpdated\": \"2026-02-02T04:42:27.150528+00:00\",\n          \"versionId\": \"MTc3MDAwNzM0NzE1MDUyODAwMA\"\n        },\n        \"payor\": [\n          {\n            \"display\": \"1 to 1 Support\",\n            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Organization\"\n          }\n        ],\n        \"period\": {\n          \"start\": \"2022-12-01T05:00:00.000Z\"\n        },\n        \"relationship\": {\n          \"coding\": [\n            {\n              \"code\": \"self\",\n              \"display\": \"Self\",\n              \"system\": \"http://terminology.hl7.org/CodeSystem/subscriber-relationship\"\n            }\n          ]\n        },\n        \"resourceType\": \"Coverage\",\n        \"status\": \"active\",\n        \"type\": {\n          \"text\": \"1 to 1 Support\"\n        }\n      },\n      \"search\": {\n        \"mode\": \"match\"\n      }\n    }\n  ]\n}"},{"id":"955bbbf1-00cf-453d-954d-53204e689b61","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"faa05ba0-834c-4e39-8ef8-db06f16a3dc8"}]},"url":"/Coverage/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"022ec954-2754-4135-93a7-1befab0436ae","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"387658b3-9b48-4c6d-9614-67c6928917f7"}]},"url":"/Coverage/_search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Coverage' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"07667e46-e4f5-4adf-9dab-bf52294b45e8"}],"id":"dc2d0cfa-c9fd-439a-987e-d9f1698bf0c4","description":"<p>Financial instrument which may be used to reimburse or pay for health care products and services. Includes insurance coverage details, subscriber information, and payor organizations.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-coverage.html\">US Core Coverage Profile</a></li>\n</ul>\n","_postman_id":"dc2d0cfa-c9fd-439a-987e-d9f1698bf0c4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Device","item":[{"name":"/Device","id":"d44c9602-d04c-40cc-8fce-9703e255d870","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Device?_revinclude=&patient=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Device"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Patient to whom Device is affixed</p>\n","type":"text/plain"},"key":"patient","value":""}],"variable":[]}},"response":[{"id":"355424ed-fbb2-483c-a3ea-f6d29c35f97c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Device?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Device"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Device/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Device/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Device/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Device/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"deviceName\": [\n                    {\n                        \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n                        \"type\": \"user-friendly-name\"\n                    }\n                ],\n                \"distinctIdentifier\": \"6975-443F-B2C4-28EFD\",\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"23\"\n                    }\n                ],\n                \"manufactureDate\": \"2021-08-02T00:00:00-04:00\",\n                \"manufacturer\": \"Johnson & Johnson\",\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T08:00:07.931890+00:00\",\n                    \"versionId\": \"MTc3MDE5MjAwNzkzMTg5MDAwMA\"\n                },\n                \"patient\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"resourceType\": \"Device\",\n                \"status\": \"active\",\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"49062001\",\n                            \"display\": \"Device\",\n                            \"system\": \"http://www.snomed.org/\"\n                        }\n                    ]\n                },\n                \"udiCarrier\": [\n                    {\n                        \"carrierHRF\": \"789abcde-f012-3456-7890-abcdef123456\",\n                        \"entryType\": \"manual\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}"},{"id":"b3622be0-fedd-4539-bca9-15d313b5fb96","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Device?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Device"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"435e6173-024e-4a31-8376-2d3be9eae02d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Device?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Device"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Device' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"d44c9602-d04c-40cc-8fce-9703e255d870"},{"name":"/Device/:id","id":"84905a7d-0e38-489f-a0d5-6899b1cb2c45","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Device/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Device",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"dd803647-2caf-4af9-9152-3f2af02e7b6c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Device/:id","host":[""],"path":["Device",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"fullUrl\": \"https://example.com/fhir/Device/987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"resource\": {\n        \"deviceName\": [\n            {\n                \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n                \"type\": \"user-friendly-name\"\n            }\n        ],\n        \"distinctIdentifier\": \"6975-443F-B2C4-28EFD\",\n        \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"identifier\": [\n            {\n                \"assigner\": {\n                    \"display\": \"Foothold Technology\",\n                    \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Organization\"\n                },\n                \"system\": \"https://footholdtechnology.com/awards\",\n                \"use\": \"official\",\n                \"value\": \"23\"\n            }\n        ],\n        \"manufactureDate\": \"2021-08-02T00:00:00-04:00\",\n        \"manufacturer\": \"Johnson & Johnson\",\n        \"meta\": {\n            \"lastUpdated\": \"2026-02-04T08:00:07.931890+00:00\",\n            \"versionId\": \"MTc3MDE5MjAwNzkzMTg5MDAwMA\"\n        },\n        \"patient\": {\n            \"display\": \"100128101\",\n            \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n            \"type\": \"Patient\"\n        },\n        \"resourceType\": \"Device\",\n        \"status\": \"active\",\n        \"type\": {\n            \"coding\": [\n                {\n                    \"code\": \"49062001\",\n                    \"display\": \"Device\",\n                    \"system\": \"http://www.snomed.org/\"\n                }\n            ]\n        },\n        \"udiCarrier\": [\n            {\n                \"carrierHRF\": \"789abcde-f012-3456-7890-abcdef123456\",\n                \"entryType\": \"manual\"\n            }\n        ]\n    },\n    \"search\": {\n        \"mode\": \"match\"\n    }\n}"},{"id":"71f7c9d2-aac8-4720-a2ab-e15c039eeb55","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Device/:id","host":[""],"path":["Device",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"e063b2dc-86a7-4174-b2bc-37ddfff9ad18","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Device/:id","host":[""],"path":["Device",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Device' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"84905a7d-0e38-489f-a0d5-6899b1cb2c45"},{"name":"Device Search using POST","id":"8e6a6ac2-e046-4e89-a4ba-94cb4a0cb672","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"_revinclude","value":"","description":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text","uuid":"2b9e32f9-3a41-4cfa-9e84-dcddd0832d9a"},{"key":"patient","value":"","description":"<p>Patient to whom Device is affixed</p>\n"}]},"url":"/Device/_search","description":"<p>This interaction searches a set of Device based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/device.html\">FHIR documentation for Device.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Device","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"fe86dbb9-e4f4-42a3-8ec1-326dc6cf6d79","name":"Device bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) Who care plan is for. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Device/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Device/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Device/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Device/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Device/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"deviceName\": [\n                    {\n                        \"name\": \"Lorem ipsum dolor sit amet, consectetur adipiscing elit\",\n                        \"type\": \"user-friendly-name\"\n                    }\n                ],\n                \"distinctIdentifier\": \"6975-443F-B2C4-28EFD\",\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"23\"\n                    }\n                ],\n                \"manufactureDate\": \"2021-08-02T00:00:00-04:00\",\n                \"manufacturer\": \"Johnson & Johnson\",\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T08:00:07.931890+00:00\",\n                    \"versionId\": \"MTc3MDE5MjAwNzkzMTg5MDAwMA\"\n                },\n                \"patient\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"resourceType\": \"Device\",\n                \"status\": \"active\",\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"49062001\",\n                            \"display\": \"Device\",\n                            \"system\": \"http://www.snomed.org/\"\n                        }\n                    ]\n                },\n                \"udiCarrier\": [\n                    {\n                        \"carrierHRF\": \"789abcde-f012-3456-7890-abcdef123456\",\n                        \"entryType\": \"manual\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}"},{"id":"1fa85c0d-c9f0-4e88-bf63-b29776daf8b9","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) Who care plan is for. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Device/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"7e04cc69-7dff-4f8d-9aa5-13c75145a4be","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"11076771","description":"(Required) Who care plan is for. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Device/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Device' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"8e6a6ac2-e046-4e89-a4ba-94cb4a0cb672"}],"id":"9222642a-ea70-4eea-9f08-74da4258e685","description":"<p>A type of a manufactured item that is used in the provision of healthcare without being substantially changed through that activity. The device may be a medical or non-medical device.</p>\n<p><strong>The following profiles are supported</strong>:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-implantable-device.html\">US Core Implantable Device Profile</a></li>\n</ul>\n","_postman_id":"9222642a-ea70-4eea-9f08-74da4258e685","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Diagnostic Report","item":[{"name":"/DiagnosticReport","id":"58d95cf6-4728-4898-bf3a-96b9328ce9b3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/DiagnosticReport?_revinclude=&date=&code=&patient=&category=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["DiagnosticReport"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>The clinically relevant time of the report</p>\n","type":"text/plain"},"key":"date","value":""},{"description":{"content":"<p>The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result</p>\n","type":"text/plain"},"key":"code","value":""},{"description":{"content":"<p>The subject of the report - usually, but not always, the patient</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>Which diagnostic discipline/department created the report</p>\n","type":"text/plain"},"key":"category","value":""}],"variable":[]}},"response":[{"id":"9d930cc5-47c5-4621-9579-821c79f6016b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DiagnosticReport?_revinclude=Provenance:target&date=2025-12-11T00:00:00-05:00&patient=123e4567-e89b-12d3-a456-426614174000&category=LP29684-5","host":[""],"path":["DiagnosticReport"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"date","value":"2025-12-11T00:00:00-05:00"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"LP29684-5"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/DiagnosticReport/?category=LP29684-5&date=2025-12-11T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/DiagnosticReport/?category=LP29684-5&date=2025-12-11T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/DiagnosticReport/?category=LP29684-5&date=2025-12-11T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/DiagnosticReport/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"LP29684-5\",\n                                \"display\": \"Radiology\",\n                                \"system\": \"http://loinc.org\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"unknown\",\n                            \"display\": \"Unknown\",\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                        }\n                    ]\n                },\n                \"effectiveDateTime\": \"2025-12-11T00:00:00-05:00\",\n                \"encounter\": {\n                    \"display\": \"encounter2124\",\n                    \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Encounter\"\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2124\"\n                    }\n                ],\n                \"issued\": \"2025-12-11T10:32:00-05:00\",\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T17:05:47.127912+00:00\",\n                    \"versionId\": \"MTc3MDEzODM0NzEyNzkxMjAwMA\"\n                },\n                \"performer\": [\n                    {\n                        \"display\": \"200427001\",\n                        \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n                        \"type\": \"Practitioner\"\n                    }\n                ],\n                \"presentedForm\": [\n                    {\n                        \"contentType\": \"application/pdf\",\n                        \"creation\": \"2025-12-11T10:34:04-05:00\",\n                        \"size\": 106880,\n                        \"title\": \"Test Document\"\n                    }\n                ],\n                \"resourceType\": \"DiagnosticReport\",\n                \"result\": [\n                    {\n                        \"display\": \"2124\",\n                        \"reference\": \"Observation/11111111-2222-3333-4444-555555555555\",\n                        \"type\": \"Observation\"\n                    }\n                ],\n                \"status\": \"unknown\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}"},{"id":"d460a8f1-789e-4f4a-b083-3cf71358dc90","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DiagnosticReport?_revinclude=Provenance:target&date=2025-12-11T00:00:00-05:00&patient=123e4567-e89b-12d3-a456-426614174000&category=LP29684-5","host":[""],"path":["DiagnosticReport"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"date","value":"2025-12-11T00:00:00-05:00"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"LP29684-5"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"7db33c8c-3894-4007-a705-6f8866895ad4","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DiagnosticReport?_revinclude=Provenance:target&date=2025-12-11T00:00:00-05:00&patient=123e4567-e89b-12d3-a456-426614174000&category=LP29684-5","host":[""],"path":["DiagnosticReport"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"date","value":"2025-12-11T00:00:00-05:00"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"LP29684-5"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'DiagnosticReport' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"58d95cf6-4728-4898-bf3a-96b9328ce9b3"},{"name":"/DiagnosticReport/:id","id":"e7897cf3-1b85-46de-8c51-65e980cb6d12","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/DiagnosticReport/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["DiagnosticReport",":id"],"host":[""],"query":[],"variable":[{"id":"e99c2149-f85a-42b9-9957-1378c76c7789","description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"146265","key":"id"}]}},"response":[{"id":"b801ef05-8b7f-4022-9439-3e45d94ceee6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DiagnosticReport/:id","host":[""],"path":["DiagnosticReport",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"LP29684-5\",\n                    \"display\": \"Radiology\",\n                    \"system\": \"http://loinc.org\"\n                }\n            ]\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"code\": \"unknown\",\n                \"display\": \"Unknown\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n            }\n        ]\n    },\n    \"effectiveDateTime\": \"2025-12-11T00:00:00-05:00\",\n    \"encounter\": {\n        \"display\": \"encounter2124\",\n        \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n        \"type\": \"Encounter\"\n    },\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"2124\"\n        }\n    ],\n    \"issued\": \"2025-12-11T10:32:00-05:00\",\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-03T17:05:47.127912+00:00\",\n        \"versionId\": \"MTc3MDEzODM0NzEyNzkxMjAwMA\"\n    },\n    \"performer\": [\n        {\n            \"display\": \"200427001\",\n            \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n            \"type\": \"Practitioner\"\n        }\n    ],\n    \"presentedForm\": [\n        {\n            \"contentType\": \"application/pdf\",\n            \"creation\": \"2025-12-11T10:34:04-05:00\",\n            \"size\": 106880,\n            \"title\": \"Test Document\"\n        }\n    ],\n    \"resourceType\": \"DiagnosticReport\",\n    \"result\": [\n        {\n            \"display\": \"2124\",\n            \"reference\": \"Observation/11111111-2222-3333-4444-555555555555\",\n            \"type\": \"Observation\"\n        }\n    ],\n    \"status\": \"unknown\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    }\n}\n"},{"id":"0264624b-290e-4f06-ae38-36e6e7b69c29","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DiagnosticReport/:id","host":[""],"path":["DiagnosticReport",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"02af12bd-0f9d-4b77-81b9-e22face0da5f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DiagnosticReport/:id","host":[""],"path":["DiagnosticReport",":id"],"variable":[{"key":"id","value":"146265","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'DiagnosticReport' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"e7897cf3-1b85-46de-8c51-65e980cb6d12"},{"name":"Diagnostic Reports Search using POST","id":"b3d51bc9-b110-4d3b-b0ea-995eebcaa8bb","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"","description":"<p>Which diagnostic discipline/department created the report</p>\n"},{"key":"patient","value":"","description":"<p>The subject of the report if a patient.</p>\n"},{"key":"code","value":"","description":"<p>The code for the report, as opposed to codes for the atomic results, which are the names on the observation resource referred to from the result</p>\n","type":"text","uuid":"d07e3ddc-057d-4356-a870-d1b54aa19f34"},{"key":"date","value":"","description":"<p>The clinically relevant time of the report</p>\n","type":"text","uuid":"09e34ae9-d650-4b02-b2e4-aaadb1a0521e"}]},"url":"/DiagnosticReport/_search","description":"<p>This interaction searches a set of DiagnosticReports based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/diagnosticreport.html\">FHIR documentation for DiagnosticReport.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["DiagnosticReport","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"e7cfad2f-7d53-47d6-9b2f-df349ee7f999","name":"DiagnosticReport bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"LP29684-5"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"date","value":"2025-12-11T00:00:00-05:00","type":"text","uuid":"19216ace-f291-4ba9-8f8f-9892de642561"}]},"url":"/DiagnosticReport/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/DiagnosticReport/?category=LP29684-5&date=2025-12-11T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/DiagnosticReport/?category=LP29684-5&date=2025-12-11T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/DiagnosticReport/?category=LP29684-5&date=2025-12-11T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/DiagnosticReport/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"LP29684-5\",\n                                \"display\": \"Radiology\",\n                                \"system\": \"http://loinc.org\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"unknown\",\n                            \"display\": \"Unknown\",\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                        }\n                    ]\n                },\n                \"effectiveDateTime\": \"2025-12-11T00:00:00-05:00\",\n                \"encounter\": {\n                    \"display\": \"encounter2124\",\n                    \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Encounter\"\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2124\"\n                    }\n                ],\n                \"issued\": \"2025-12-11T10:32:00-05:00\",\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T17:05:47.127912+00:00\",\n                    \"versionId\": \"MTc3MDEzODM0NzEyNzkxMjAwMA\"\n                },\n                \"performer\": [\n                    {\n                        \"display\": \"200427001\",\n                        \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n                        \"type\": \"Practitioner\"\n                    }\n                ],\n                \"presentedForm\": [\n                    {\n                        \"contentType\": \"application/pdf\",\n                        \"creation\": \"2025-12-11T10:34:04-05:00\",\n                        \"size\": 106880,\n                        \"title\": \"Test Document\"\n                    }\n                ],\n                \"resourceType\": \"DiagnosticReport\",\n                \"result\": [\n                    {\n                        \"display\": \"2124\",\n                        \"reference\": \"Observation/11111111-2222-3333-4444-555555555555\",\n                        \"type\": \"Observation\"\n                    }\n                ],\n                \"status\": \"unknown\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}"},{"id":"eb40a384-6cc4-4d25-95d0-a38010b147d0","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"LP29684-5"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]},"url":"/DiagnosticReport/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"5a376f60-ba75-4d92-8b5f-ae45cc84366a","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"category","value":"LP29684-5"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]},"url":"/DiagnosticReport/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'DiagnosticReport' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"b3d51bc9-b110-4d3b-b0ea-995eebcaa8bb"}],"id":"ad5a518f-62cf-4c97-be14-1f980676accb","description":"<p>The findings and interpretation of diagnostic tests performed on patients, groups of patients, devices, and locations, and/or specimens derived from these. The report includes clinical context such as requesting and provider information, and some mix of atomic results, images, textual and coded interpretations, and formatted representation of diagnostic reports.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-lab.html\">US Core DiagnosticReport Profile for Laboratory Results Reporting</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-diagnosticreport-note.html\">US Core DiagnosticReport Profile for Report and Note exchange</a></p>\n</li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Laboratory results</td>\n<td>DiagnosticReport.category.coding = \"LAB\"</td>\n</tr>\n<tr>\n<td>Radiology</td>\n<td>DiagnosticReport.category.coding = \"LP29708-2\"</td>\n</tr>\n<tr>\n<td>Cardiology</td>\n<td>DiagnosticReport.category.coding = \"LP7839-6\"</td>\n</tr>\n<tr>\n<td>Pathology</td>\n<td>DiagnosticReport.category.coding = \"LP29684-5\"</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ad5a518f-62cf-4c97-be14-1f980676accb","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Document Reference","item":[{"name":"/DocumentReference","id":"054f78e3-8331-4113-a925-4ce74a709b9d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/DocumentReference?_revinclude=&category=&date=&patient=&type=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["DocumentReference"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Categorization of document</p>\n","type":"text/plain"},"key":"category","value":""},{"description":{"content":"<p>When this document reference was created</p>\n","type":"text/plain"},"key":"date","value":""},{"description":{"content":"<p>Who/what is the subject of the document</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>Kind of document (LOINC if possible)</p>\n","type":"text/plain"},"key":"type","value":""}],"variable":[]}},"response":[{"id":"27f3d909-6461-40bd-b761-2c4b85e2c8f4","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DocumentReference?_revinclude=Provenance:target&category=clinical-note&date=gt2026-02-03T00:00:00-05:00&patient=123e4567-e89b-12d3-a456-426614174000&type=11488-4","host":[""],"path":["DocumentReference"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"category","value":"clinical-note"},{"key":"date","value":"gt2026-02-03T00:00:00-05:00"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"type","value":"11488-4","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/DocumentReference/?category=clinical-note&date=gt2026-02-03T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/DocumentReference/?category=clinical-note&date=gt2026-02-03T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/DocumentReference/?category=clinical-note&date=gt2026-02-03T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/DocumentReference/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"author\": [\n                    {\n                        \"display\": \"202441\",\n                        \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n                        \"type\": \"Practitioner\"\n                    }\n                ],\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"clinical-note\",\n                                \"display\": \"Clinical Note\",\n                                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category\",\n                                \"version\": \"5.0.1\"\n                            }\n                        ],\n                        \"text\": \"Clinical Note\"\n                    }\n                ],\n                \"content\": [\n                    {\n                        \"attachment\": {\n                            \"contentType\": \"text/html\",\n                            \"data\": \"UGxhbiBvZiBUcmVhdG1lbnQ=\",\n                            \"hash\": \"LbKUoFg1zFeXSsWQVUFcU/JmX9s=\",\n                            \"title\": \"PLan of Treatment\",\n                            \"url\": \"https://footholdtechnology.com/awards\"\n                        },\n                        \"format\": {\n                            \"code\": \"urn:ihe:iti:xds:2017:mimeTypeSufficient\",\n                            \"display\": \"mimeType Sufficient\",\n                            \"system\": \"http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem\",\n                            \"version\": \"4.0.1\"\n                        }\n                    }\n                ],\n                \"context\": {\n                    \"encounter\": [\n                        {\n                            \"display\": \"152\",\n                            \"reference\": \"Encounter/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Encounter\"\n                        }\n                    ],\n                    \"period\": {\n                        \"start\": \"2026-02-04T00:00:00-05:00\"\n                    }\n                },\n                \"custodian\": {\n                    \"display\": \"Foothold Technology\",\n                    \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Organization\"\n                },\n                \"date\": \"2026-02-04T00:00:00-05:00\",\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"152\"\n                    }\n                ],\n                \"masterIdentifier\": {\n                    \"assigner\": {\n                        \"display\": \"Foothold Technology\",\n                        \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                        \"type\": \"Organization\"\n                    },\n                    \"system\": \"https://footholdtechnology.com/awards\",\n                    \"use\": \"official\",\n                    \"value\": \"152\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T08:32:10.010652+00:00\",\n                    \"versionId\": \"MTc3MDE5MzkzMDAxMDY1MjAwMA\"\n                },\n                \"resourceType\": \"DocumentReference\",\n                \"status\": \"current\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"text\": {\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">This resource contains progress notes, which are notes written by workers about the patient's progress in the program.</div>\",\n                    \"status\": \"generated\"\n                },\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"11488-4\",\n                            \"display\": \"Consultation Note\",\n                            \"system\": \"http://loinc.org\"\n                        }\n                    ],\n                    \"text\": \"Consultation Note\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"0ae745d6-9046-4d9d-821a-c6d5452d6302","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DocumentReference?_revinclude=Provenance:target&category=clinical-note&date=gt2026-02-03T00:00:00-05:00&patient=123e4567-e89b-12d3-a456-426614174000&type=11488-4","host":[""],"path":["DocumentReference"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"category","value":"clinical-note"},{"key":"date","value":"gt2026-02-03T00:00:00-05:00"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"type","value":"11488-4"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"e236735b-2409-4c3e-80d1-6c5122222b1d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DocumentReference?_revinclude=Provenance:target&category=clinical-note&date=gt2026-02-03T00:00:00-05:00&patient=123e4567-e89b-12d3-a456-426614174000&type=11488-4","host":[""],"path":["DocumentReference"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"category","value":"clinical-note"},{"key":"date","value":"gt2026-02-03T00:00:00-05:00"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"type","value":"11488-4"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'DocumentReference' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"054f78e3-8331-4113-a925-4ce74a709b9d"},{"name":"/DocumentReference/:id","id":"3c08c394-8ccc-434d-93c3-2f8e3e0b2937","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/DocumentReference/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["DocumentReference",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"c47a1e49-fefc-4111-9bae-472e66b0c719","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DocumentReference/:id","host":[""],"path":["DocumentReference",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"author\": [\n        {\n            \"display\": \"202441\",\n            \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Practitioner\"\n        }\n    ],\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"clinical-note\",\n                    \"display\": \"Clinical Note\",\n                    \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category\",\n                    \"version\": \"5.0.1\"\n                }\n            ],\n            \"text\": \"Clinical Note\"\n        }\n    ],\n    \"content\": [\n        {\n            \"attachment\": {\n                \"contentType\": \"text/html\",\n                \"data\": \"UGxhbiBvZiBUcmVhdG1lbnQ=\",\n                \"hash\": \"LbKUoFg1zFeXSsWQVUFcU/JmX9s=\",\n                \"title\": \"PLan of Treatment\",\n                \"url\": \"https://footholdtechnology.com/awards\"\n            },\n            \"format\": {\n                \"code\": \"urn:ihe:iti:xds:2017:mimeTypeSufficient\",\n                \"display\": \"mimeType Sufficient\",\n                \"system\": \"http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem\",\n                \"version\": \"4.0.1\"\n            }\n        }\n    ],\n    \"context\": {\n        \"encounter\": [\n            {\n                \"display\": \"152\",\n                \"reference\": \"Encounter/789abcde-f012-3456-7890-abcdef123456\",\n                \"type\": \"Encounter\"\n            }\n        ],\n        \"period\": {\n            \"start\": \"2026-02-04T00:00:00-05:00\"\n        }\n    },\n    \"custodian\": {\n        \"display\": \"Foothold Technology\",\n        \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n        \"type\": \"Organization\"\n    },\n    \"date\": \"2026-02-04T00:00:00-05:00\",\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"152\"\n        }\n    ],\n    \"masterIdentifier\": {\n        \"assigner\": {\n            \"display\": \"Foothold Technology\",\n            \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n            \"type\": \"Organization\"\n        },\n        \"system\": \"https://footholdtechnology.com/awards\",\n        \"use\": \"official\",\n        \"value\": \"152\"\n    },\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-04T08:32:10.010652+00:00\",\n        \"versionId\": \"MTc3MDE5MzkzMDAxMDY1MjAwMA\"\n    },\n    \"resourceType\": \"DocumentReference\",\n    \"status\": \"current\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    },\n    \"text\": {\n        \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">This resource contains progress notes, which are notes written by workers about the patient's progress in the program.</div>\",\n        \"status\": \"generated\"\n    },\n    \"type\": {\n        \"coding\": [\n            {\n                \"code\": \"11488-4\",\n                \"display\": \"Consultation Note\",\n                \"system\": \"http://loinc.org\"\n            }\n        ],\n        \"text\": \"Consultation Note\"\n    }\n}\n"},{"id":"5788fda9-987d-4144-99fd-27b004c8ccb9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DocumentReference/:id","host":[""],"path":["DocumentReference",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"2b651df1-fd07-48ca-b664-be44f3596b8e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/DocumentReference/:id","host":[""],"path":["DocumentReference",":id"],"variable":[{"key":"id","value":"146265","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'DocumentReference' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"3c08c394-8ccc-434d-93c3-2f8e3e0b2937"},{"name":"Document References Search using POST","id":"8b684284-f97b-47be-9f0a-a114d825c65f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>(Required) Who/what is the subject of the document. Important! The data form of the Request body must be like (example): patient=1107677</p>\n"},{"key":"category","value":"","description":"<p>Categorization of document</p>\n","type":"text","uuid":"5557123e-182f-418b-ba64-ac9977b50400"},{"key":"date","value":"","description":"<p>When this document reference was created</p>\n","type":"text","uuid":"acba3382-5bb9-4484-ac75-f4ee95e73f9c"}]},"url":"/DocumentReference/_search","description":"<p>This interaction searches a set of DocumentReferences based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/documentreference.html\">FHIR documentation for DocumentReference.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["DocumentReference","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"f7cb0187-05e0-4c8e-9c26-f2df025240d9","name":"DocumentReference bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) Who/what is the subject of the document. Important! The data form of the Request body must be like (example): patient=1107677"},{"key":"category","value":"clinical-note","type":"text","uuid":"1e8c1db0-d055-40d2-aafc-f1983c98b33d"},{"key":"date","value":"gt2026-02-03T00:00:00-05:00","type":"text","uuid":"c76f341f-ccdf-4606-b8aa-c54b37ba976c"},{"key":"type","value":"11488-4","type":"text","uuid":"45444e75-0dcf-4736-a5d4-af9e89bc6aa7"}]},"url":"/DocumentReference/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/DocumentReference/?category=clinical-note&date=gt2026-02-03T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/DocumentReference/?category=clinical-note&date=gt2026-02-03T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/DocumentReference/?category=clinical-note&date=gt2026-02-03T00%3A00%3A00-05%3A00&patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/DocumentReference/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"author\": [\n                    {\n                        \"display\": \"202441\",\n                        \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n                        \"type\": \"Practitioner\"\n                    }\n                ],\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"clinical-note\",\n                                \"display\": \"Clinical Note\",\n                                \"system\": \"http://hl7.org/fhir/us/core/CodeSystem/us-core-documentreference-category\",\n                                \"version\": \"5.0.1\"\n                            }\n                        ],\n                        \"text\": \"Clinical Note\"\n                    }\n                ],\n                \"content\": [\n                    {\n                        \"attachment\": {\n                            \"contentType\": \"text/html\",\n                            \"data\": \"UGxhbiBvZiBUcmVhdG1lbnQ=\",\n                            \"hash\": \"LbKUoFg1zFeXSsWQVUFcU/JmX9s=\",\n                            \"title\": \"PLan of Treatment\",\n                            \"url\": \"https://footholdtechnology.com/awards\"\n                        },\n                        \"format\": {\n                            \"code\": \"urn:ihe:iti:xds:2017:mimeTypeSufficient\",\n                            \"display\": \"mimeType Sufficient\",\n                            \"system\": \"http://ihe.net/fhir/ValueSet/IHE.FormatCode.codesystem\",\n                            \"version\": \"4.0.1\"\n                        }\n                    }\n                ],\n                \"context\": {\n                    \"encounter\": [\n                        {\n                            \"display\": \"152\",\n                            \"reference\": \"Encounter/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Encounter\"\n                        }\n                    ],\n                    \"period\": {\n                        \"start\": \"2026-02-04T00:00:00-05:00\"\n                    }\n                },\n                \"custodian\": {\n                    \"display\": \"Foothold Technology\",\n                    \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Organization\"\n                },\n                \"date\": \"2026-02-04T00:00:00-05:00\",\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"152\"\n                    }\n                ],\n                \"masterIdentifier\": {\n                    \"assigner\": {\n                        \"display\": \"Foothold Technology\",\n                        \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                        \"type\": \"Organization\"\n                    },\n                    \"system\": \"https://footholdtechnology.com/awards\",\n                    \"use\": \"official\",\n                    \"value\": \"152\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T08:32:10.010652+00:00\",\n                    \"versionId\": \"MTc3MDE5MzkzMDAxMDY1MjAwMA\"\n                },\n                \"resourceType\": \"DocumentReference\",\n                \"status\": \"current\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"text\": {\n                    \"div\": \"<div xmlns=\\\"http://www.w3.org/1999/xhtml\\\">This resource contains progress notes, which are notes written by workers about the patient's progress in the program.</div>\",\n                    \"status\": \"generated\"\n                },\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"11488-4\",\n                            \"display\": \"Consultation Note\",\n                            \"system\": \"http://loinc.org\"\n                        }\n                    ],\n                    \"text\": \"Consultation Note\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"3e0e4769-e2f8-4c8a-82bc-2a16797b26cd","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) Who/what is the subject of the document. Important! The data form of the Request body must be like (example): patient=1107677"},{"key":"category","value":"clinical-note","type":"text","uuid":"59eb13f5-098f-43fc-b373-d34758c16d29"}]},"url":"/DocumentReference/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"cb984b21-c95f-4676-8e42-2ff6bc5611ce","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) Who/what is the subject of the document. Important! The data form of the Request body must be like (example): patient=1107677"},{"key":"category","value":"clinical-note","type":"text","uuid":"67c91fa4-3c64-4954-8fd5-0c9916b74365"}]},"url":"/DocumentReference/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'DocumentReference' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"8b684284-f97b-47be-9f0a-a114d825c65f"}],"id":"5022a074-1941-4569-9fe7-859328cb4d3b","description":"<p>A reference to a document of any kind for any purpose. Provides metadata about the document so that the document can be discovered and managed. The scope of a document is any seralized object with a mime-type, so includes formal patient centric documents (CDA), cliical notes, scanned paper, and non-patient specific documents like policy text.</p>\n<p><strong>The following profiles are supported</strong>:</p>\n<ul>\n<li><a href=\"https://desktop.postman.com/?desktopVersion=10.5.2&amp;webVersion=10.5.8-ui-221206-0716&amp;userId=3104121&amp;teamId=1364362\"></a><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-documentreference.html\">US Core DocumentReference Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Consultation Note</td>\n<td>DocumentReference.type = \"11488-4\"</td>\n</tr>\n<tr>\n<td>Discharge Summary</td>\n<td>DocumentReference.type = \"18842-5\"</td>\n</tr>\n<tr>\n<td>History &amp; Physical Note</td>\n<td>DocumentReference.type = \"34117-2\"</td>\n</tr>\n<tr>\n<td>Procedures Note</td>\n<td>DocumentReference.type = \"28570-0\"</td>\n</tr>\n<tr>\n<td>Progress Note</td>\n<td>DocumentReference.type = \"11506-3\"</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"5022a074-1941-4569-9fe7-859328cb4d3b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Encounter","item":[{"name":"/Encounter","id":"d80ed88e-638a-47c5-b3b1-b31e9758cf6b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Encounter?_id&patient&date","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Encounter"],"host":[""],"query":[{"description":{"content":"<p>The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"key":"_id","value":null},{"description":{"content":"<p>Id of the patient or group present at the encounter</p>\n","type":"text/plain"},"key":"patient","value":null},{"key":"date","value":null}],"variable":[]}},"response":[{"id":"bc8c51f5-b4ce-4697-ad32-383aa1e570b3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Encounter?patient=123e4567-e89b-12d3-a456-426614174000&date=gt2026-02-03T15:34:00-05:00","host":[""],"path":["Encounter"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"date","value":"gt2026-02-03T15:34:00-05:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Encounter/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Encounter/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Encounter/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Encounter/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"class\": {\n                    \"code\": \"AMB\",\n                    \"display\": \"ambulatory\",\n                    \"system\": \"https://terminology.hl7.org/3.1.0/ValueSet-v3-ActEncounterCode.html\"\n                },\n                \"hospitalization\": {\n                    \"dischargeDisposition\": {\n                        \"coding\": [\n                            {\n                                \"code\": \"oth\",\n                                \"display\": \"Other\"\n                            }\n                        ],\n                        \"text\": \"Other\"\n                    }\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"152\"\n                    }\n                ],\n                \"location\": [\n                    {\n                        \"location\": {\n                            \"display\": \"location152\",\n                            \"reference\": \"Location/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Location\"\n                        }\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T08:32:08.616408+00:00\",\n                    \"versionId\": \"MTc3MDE5MzkyODYxNjQwODAwMA\"\n                },\n                \"participant\": [\n                    {\n                        \"individual\": {\n                            \"display\": \"202285001\",\n                            \"reference\": \"Practitioner/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Practitioner\"\n                        },\n                        \"period\": {\n                            \"end\": \"2026-02-04T15:34:00-05:00\",\n                            \"start\": \"2026-02-04T15:30:00-05:00\"\n                        },\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"code\": \"PART\",\n                                        \"display\": \"Participation\",\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n                                    }\n                                ],\n                                \"text\": \"Indicates that the target of the participation is involved in some manner in the act, but does not qualify how.\"\n                            }\n                        ]\n                    }\n                ],\n                \"period\": {\n                    \"end\": \"2026-02-04T15:34:00-05:00\",\n                    \"start\": \"2026-02-04T15:30:00-05:00\"\n                },\n                \"reasonCode\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"214475002\",\n                                \"display\": \"Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured\",\n                                \"system\": \"http://snomed.info/sct\"\n                            }\n                        ],\n                        \"text\": \"Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured\"\n                    }\n                ],\n                \"resourceType\": \"Encounter\",\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Organization\"\n                },\n                \"status\": \"finished\",\n                \"subject\": {\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"type\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"display\": \"Consult note\"\n                            }\n                        ],\n                        \"text\": \"Consult note\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"7ff4470f-28f3-4b16-a382-57b347d064fc","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Encounter?patient=123e4567-e89b-12d3-a456-426614174000&date=gt2026-02-03T15:34:00-05:00","host":[""],"path":["Encounter"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"date","value":"gt2026-02-03T15:34:00-05:00"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"874064b7-5dd7-47ed-95f6-69f94c0e31b3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Encounter?patient=123e4567-e89b-12d3-a456-426614174000&date=gt2026-02-03T15:34:00-05:00","host":[""],"path":["Encounter"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"date","value":"gt2026-02-03T15:34:00-05:00"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Encounter' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"d80ed88e-638a-47c5-b3b1-b31e9758cf6b"},{"name":"/Encounter/:id","id":"822361a3-f1d9-4e2f-a830-d74ad1f2ac21","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Encounter/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Encounter",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"6ebaab8b-5ce9-4aee-af0c-19b9b1655414","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Encounter/:id","host":[""],"path":["Encounter",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"class\": {\n        \"code\": \"AMB\",\n        \"display\": \"ambulatory\",\n        \"system\": \"https://terminology.hl7.org/3.1.0/ValueSet-v3-ActEncounterCode.html\"\n    },\n    \"hospitalization\": {\n        \"dischargeDisposition\": {\n            \"coding\": [\n                {\n                    \"code\": \"oth\",\n                    \"display\": \"Other\"\n                }\n            ],\n            \"text\": \"Other\"\n        }\n    },\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"152\"\n        }\n    ],\n    \"location\": [\n        {\n            \"location\": {\n                \"display\": \"location152\",\n                \"reference\": \"Location/456e7890-f12b-34c5-d678-901234567def\",\n                \"type\": \"Location\"\n            }\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-04T08:32:08.616408+00:00\",\n        \"versionId\": \"MTc3MDE5MzkyODYxNjQwODAwMA\"\n    },\n    \"participant\": [\n        {\n            \"individual\": {\n                \"display\": \"202285001\",\n                \"reference\": \"Practitioner/789abcde-f012-3456-7890-abcdef123456\",\n                \"type\": \"Practitioner\"\n            },\n            \"period\": {\n                \"end\": \"2026-02-04T15:34:00-05:00\",\n                \"start\": \"2026-02-04T15:30:00-05:00\"\n            },\n            \"type\": [\n                {\n                    \"coding\": [\n                        {\n                            \"code\": \"PART\",\n                            \"display\": \"Participation\",\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n                        }\n                    ],\n                    \"text\": \"Indicates that the target of the participation is involved in some manner in the act, but does not qualify how.\"\n                }\n            ]\n        }\n    ],\n    \"period\": {\n        \"end\": \"2026-02-04T15:34:00-05:00\",\n        \"start\": \"2026-02-04T15:30:00-05:00\"\n    },\n    \"reasonCode\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"214475002\",\n                    \"display\": \"Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured\",\n                    \"system\": \"http://snomed.info/sct\"\n                }\n            ],\n            \"text\": \"Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured\"\n        }\n    ],\n    \"resourceType\": \"Encounter\",\n    \"serviceProvider\": {\n        \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n        \"type\": \"Organization\"\n    },\n    \"status\": \"finished\",\n    \"subject\": {\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    },\n    \"type\": [\n        {\n            \"coding\": [\n                {\n                    \"display\": \"Consult note\"\n                }\n            ],\n            \"text\": \"Consult note\"\n        }\n    ]\n}\n"},{"id":"6e0c4266-5527-4648-9502-94d9084a34b3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Encounter/:id","host":[""],"path":["Encounter",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"5e6c70d1-c4f0-4293-8bed-0116f917adc7","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Encounter/:id","host":[""],"path":["Encounter",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Encounter' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"822361a3-f1d9-4e2f-a830-d74ad1f2ac21"},{"name":"Encounter Search using POST","id":"27edced8-5a9a-43b0-acfa-b91cb3019365","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","type":"text","uuid":"2b7dbfe2-dfc4-4182-9ff4-cf164061067c"}]},"url":"/Encounter/_search","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Encounter","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"2570e5fe-3fc0-4cf7-a8ea-8f2668331a80","name":"Success","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"240285d7-9183-4cb4-9232-51248e7b816b"},{"key":"date","value":"gt2026-02-03T15:34:00-05:00","type":"text","uuid":"7358d265-e771-49ab-bd26-4ecaa183aa90"}]},"url":"/Encounter/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Encounter/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Encounter/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Encounter/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Encounter/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"class\": {\n                    \"code\": \"AMB\",\n                    \"display\": \"ambulatory\",\n                    \"system\": \"https://terminology.hl7.org/3.1.0/ValueSet-v3-ActEncounterCode.html\"\n                },\n                \"hospitalization\": {\n                    \"dischargeDisposition\": {\n                        \"coding\": [\n                            {\n                                \"code\": \"oth\",\n                                \"display\": \"Other\"\n                            }\n                        ],\n                        \"text\": \"Other\"\n                    }\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"152\"\n                    }\n                ],\n                \"location\": [\n                    {\n                        \"location\": {\n                            \"display\": \"location152\",\n                            \"reference\": \"Location/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Location\"\n                        }\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T08:32:08.616408+00:00\",\n                    \"versionId\": \"MTc3MDE5MzkyODYxNjQwODAwMA\"\n                },\n                \"participant\": [\n                    {\n                        \"individual\": {\n                            \"display\": \"202285001\",\n                            \"reference\": \"Practitioner/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Practitioner\"\n                        },\n                        \"period\": {\n                            \"end\": \"2026-02-04T15:34:00-05:00\",\n                            \"start\": \"2026-02-04T15:30:00-05:00\"\n                        },\n                        \"type\": [\n                            {\n                                \"coding\": [\n                                    {\n                                        \"code\": \"PART\",\n                                        \"display\": \"Participation\",\n                                        \"system\": \"http://terminology.hl7.org/CodeSystem/v3-ParticipationType\"\n                                    }\n                                ],\n                                \"text\": \"Indicates that the target of the participation is involved in some manner in the act, but does not qualify how.\"\n                            }\n                        ]\n                    }\n                ],\n                \"period\": {\n                    \"end\": \"2026-02-04T15:34:00-05:00\",\n                    \"start\": \"2026-02-04T15:30:00-05:00\"\n                },\n                \"reasonCode\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"214475002\",\n                                \"display\": \"Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured\",\n                                \"system\": \"http://snomed.info/sct\"\n                            }\n                        ],\n                        \"text\": \"Noncollision motor vehicle traffic accident involving being trapped by door of motor bus while boarding or alighting, rider of animal or occupant of animal-drawn vehicle injured\"\n                    }\n                ],\n                \"resourceType\": \"Encounter\",\n                \"serviceProvider\": {\n                    \"reference\": \"Organization/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Organization\"\n                },\n                \"status\": \"finished\",\n                \"subject\": {\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"type\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"display\": \"Consult note\"\n                            }\n                        ],\n                        \"text\": \"Consult note\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"8ed184d7-01be-4641-b8c1-fa257cfcc5bb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"f8e0d825-0d3d-436a-bae5-ce0784e7e293"}]},"url":"/Encounter/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"53be6b22-6a3c-494e-9dc4-538d4c9dc019","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"738c676e-c5cb-4155-b534-8799315bcbec"}]},"url":"/Encounter/_search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Encounter' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"27edced8-5a9a-43b0-acfa-b91cb3019365"}],"id":"55367ac4-d3eb-43cc-91ff-38973d049cbf","description":"<p>An interaction between a patient and healthcare provider(s) for the purpose of providing healthcare service(s) or assessing the health status of a patient.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-medicationrequest.html\"></a><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-encounter.html\">US Core Encounter Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Encounter Type</td>\n<td>Encounter.type</td>\n</tr>\n<tr>\n<td>Encounter Time</td>\n<td>Encounter.period</td>\n</tr>\n<tr>\n<td>Encounter Location</td>\n<td>Encounter.location</td>\n</tr>\n<tr>\n<td>Encounter Disposition</td>\n<td>Encounter.hospitalization.dischargeDisposition</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"55367ac4-d3eb-43cc-91ff-38973d049cbf","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Goal","item":[{"name":"/Goal","id":"3917a6e4-6018-42b2-8710-9e4c1ea4bc41","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Goal?_revinclude=&patient=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Goal"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Who this goal is intended for</p>\n","type":"text/plain"},"key":"patient","value":""}],"variable":[]}},"response":[{"id":"198e0aef-335c-4cc5-9455-c4cbd4343dab","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Goal?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Goal"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Goal/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Goal/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Goal/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Goal/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"description\": {\n                    \"coding\": [\n                        {\n                            \"display\": \"Goal\",\n                            \"system\": \"http://www.snomed.org/\"\n                        }\n                    ]\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"756\"\n                    }\n                ],\n                \"lifecycleStatus\": \"active\",\n                \"meta\": {\n                    \"lastUpdated\": \"2025-12-31T12:39:34.963278+00:00\",\n                    \"versionId\": \"MTc2NzE4NDc3NDk2MzI3ODAwMA\"\n                },\n                \"resourceType\": \"Goal\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"303acc6c-eebb-4998-b844-1c12a2fc3849","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Goal?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Goal"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"054a3f20-a4d4-4c95-8d8e-de77804cb720","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Goal?_revinclude=Provenance:target&patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Goal"],"query":[{"key":"_revinclude","value":"Provenance:target"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Goal' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"3917a6e4-6018-42b2-8710-9e4c1ea4bc41"},{"name":"/Goal/:id","id":"8780e86e-8f05-4de8-9e42-b918cbeed77f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Goal/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Goal",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"794263b7-1177-44e1-8283-c47e4f73399c","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Goal/:id","host":[""],"path":["Goal",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"description\": {\n        \"coding\": [\n            {\n                \"display\": \"Goal\",\n                \"system\": \"http://www.snomed.org/\"\n            }\n        ]\n    },\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"756\"\n        }\n    ],\n    \"lifecycleStatus\": \"active\",\n    \"meta\": {\n        \"lastUpdated\": \"2025-12-31T12:39:34.963278+00:00\",\n        \"versionId\": \"MTc2NzE4NDc3NDk2MzI3ODAwMA\"\n    },\n    \"resourceType\": \"Goal\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    }\n}\n"},{"id":"e1692a72-fca4-4edf-aa87-7fe3dffe4d6d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Goal/:id","host":[""],"path":["Goal",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"a1311a6e-50ea-402d-a577-24aa2f6735cc","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Goal/:id","host":[""],"path":["Goal",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Goal' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"8780e86e-8f05-4de8-9e42-b918cbeed77f"},{"name":"Goal Search using POST","id":"a02a188c-445f-4f60-96e0-c2272ecdafc9","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677</p>\n"}]},"url":"/Goal/_search","description":"<p>This interaction searches a set of Goal based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/goal.html\">FHIR documentation for Goal.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Goal","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"c73d9673-37f3-4105-9090-b2080b6ce276","name":"Goal bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Goal/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Goal/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Goal/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Goal/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Goal/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"description\": {\n                    \"coding\": [\n                        {\n                            \"display\": \"Goal\",\n                            \"system\": \"http://www.snomed.org/\"\n                        }\n                    ]\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"756\"\n                    }\n                ],\n                \"lifecycleStatus\": \"active\",\n                \"meta\": {\n                    \"lastUpdated\": \"2025-12-31T12:39:34.963278+00:00\",\n                    \"versionId\": \"MTc2NzE4NDc3NDk2MzI3ODAwMA\"\n                },\n                \"resourceType\": \"Goal\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"4e026185-3ee2-4a59-b2da-8a267360a3bc","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Goal/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"1c85ced7-2451-49b2-9d11-d88e2960c9ec","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Goal/_search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Goal' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"a02a188c-445f-4f60-96e0-c2272ecdafc9"}],"id":"ae414598-b48b-4243-be67-751245002533","description":"<p>Describes the intended objective(s) for a patient, group or organization care, for example, weight loss, restoring an activity of daily living, obtaining herd immunity via immunization, meeting a process improvement objective, etc.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-diagnosticreport-note.html\"></a><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-goal.html\">US Core Goal Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Patient Goals</td>\n<td>All</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ae414598-b48b-4243-be67-751245002533","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Immunization","item":[{"name":"/Immunization","id":"0884cecc-36bf-4d26-a044-5c2020810094","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Immunization?_revinclude=&patient=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Immunization"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Who was immunized</p>\n","type":"text/plain"},"key":"patient","value":""}],"variable":[]}},"response":[{"id":"d766aa34-24b3-4cd8-b86d-91ac0477e9df","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Immunization?patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Immunization"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Immunization/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Immunization/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Immunization/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Immunization/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2076\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T17:13:40.597479+00:00\",\n                    \"versionId\": \"MTc3MDEzODgyMDU5NzQ3OTAwMA\"\n                },\n                \"occurrenceDateTime\": \"2021-07-09T04:00:00.000Z\",\n                \"patient\": {\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"primarySource\": true,\n                \"recorded\": \"2021-06-30T17:01:59.000Z\",\n                \"resourceType\": \"Immunization\",\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"213\",\n                            \"display\": \"COVID-19 2-dose\",\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"version\": \"4.3.0\"\n                        }\n                    ]\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"253d3c1d-88a3-4d17-bdea-6f0f94af4c40","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Immunization?patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Immunization"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"beb7d7d6-1c1d-477a-8121-ead86a6a7656","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Immunization?patient=123e4567-e89b-12d3-a456-426614174000","host":[""],"path":["Immunization"],"query":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Immunization' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"0884cecc-36bf-4d26-a044-5c2020810094"},{"name":"/Immunization/:id","id":"a9f92d31-157f-483c-8b57-fccc6e26a63b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Immunization/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Immunization",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"98c045b0-39b8-4eaf-b122-8f9d07a0f98d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Immunization/:id","host":[""],"path":["Immunization",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n  \"identifier\": [\n    {\n      \"system\": \"https://footholdtechnology.com/awards\",\n      \"use\": \"official\",\n      \"value\": \"2076\"\n    }\n  ],\n  \"meta\": {\n    \"lastUpdated\": \"2026-02-03T17:13:40.597479+00:00\",\n    \"versionId\": \"MTc3MDEzODgyMDU5NzQ3OTAwMA\"\n  },\n  \"occurrenceDateTime\": \"2021-07-09T04:00:00.000Z\",\n  \"patient\": {\n    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n    \"type\": \"Patient\"\n  },\n  \"primarySource\": true,\n  \"recorded\": \"2021-06-30T17:01:59.000Z\",\n  \"resourceType\": \"Immunization\",\n  \"status\": \"completed\",\n  \"vaccineCode\": {\n    \"coding\": [\n      {\n        \"code\": \"213\",\n        \"display\": \"COVID-19 2-dose\",\n        \"system\": \"http://hl7.org/fhir/sid/cvx\",\n        \"version\": \"4.3.0\"\n      }\n    ]\n  }\n}\n"},{"id":"4fcf812b-7f30-47bf-b35c-3d98caa65cb1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Immunization/:id","host":[""],"path":["Immunization",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"58358c5b-fee5-498e-9422-7f409a08cb0b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Immunization/:id","host":[""],"path":["Immunization",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Immunization' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"a9f92d31-157f-483c-8b57-fccc6e26a63b"},{"name":"Immunizations Search using POST","id":"57829908-1b57-44a3-a671-46c640a0ea4e","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>Who was immunized</p>\n"}]},"url":"/Immunization/_search","description":"<p>This interaction searches a set of Immunizations based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/immunization.html\">FHIR documentation for Immunization.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Immunization","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1f85f9b4-ee6e-446c-8996-0d6b25583391","name":"Immunization bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The patient for the vaccination record. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Immunization/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Immunization/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Immunization/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Immunization/?patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Immunization/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2076\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T17:13:40.597479+00:00\",\n                    \"versionId\": \"MTc3MDEzODgyMDU5NzQ3OTAwMA\"\n                },\n                \"occurrenceDateTime\": \"2021-07-09T04:00:00.000Z\",\n                \"patient\": {\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"primarySource\": true,\n                \"recorded\": \"2021-06-30T17:01:59.000Z\",\n                \"resourceType\": \"Immunization\",\n                \"status\": \"completed\",\n                \"vaccineCode\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"213\",\n                            \"display\": \"COVID-19 2-dose\",\n                            \"system\": \"http://hl7.org/fhir/sid/cvx\",\n                            \"version\": \"4.3.0\"\n                        }\n                    ]\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"f03f7ecc-5771-470d-9d50-65b51c7aee78","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The patient for the vaccination record. Important! The data form of the Request body must be like (example): patient=1107677"}]},"url":"/Immunization/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"e74361d9-48c9-43d9-a8a7-7cb4309e2065","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]},"url":"/Immunization/_search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Immunization' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"57829908-1b57-44a3-a671-46c640a0ea4e"}],"id":"a3f080ca-bb20-471f-8b10-0f575a66a38b","description":"<p>Describes the event of a patient being administered a vaccine or a record of an immunization as reported by a patient, a clinician or another party.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-immunization.html\">US Core Immunization Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Immunization</td>\n<td>All</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"a3f080ca-bb20-471f-8b10-0f575a66a38b","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Location","item":[{"name":"/Location","id":"36d04f5e-c37b-4de5-bc45-28fbabd63ddf","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Location","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Location"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"b5fda743-d448-4f66-bea5-cea9d9ecd855","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Location"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Location/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"address\": {\n                    \"city\": \"New York\",\n                    \"line\": [\"123 Main St.\"],\n                    \"postalCode\": \"10011\",\n                    \"state\": \"NY\"\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"managingOrganization\": {\n                    \"display\": \"demodb\",\n                    \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Organization\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T12:00:26.286644+00:00\",\n                    \"versionId\": \"MTc3MDEyMDAyNjI4NjY0NDAwMA\"\n                },\n                \"name\": \"Provider Location\",\n                \"resourceType\": \"Location\",\n                \"status\": \"active\",\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"use\": \"work\",\n                        \"value\": \"1234567890\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Location/\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Location/\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Location/\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Location/\"\n        }\n    ]\n}\n"},{"id":"d1504434-4902-446e-9805-28bf3beec566","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Location"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"1ac9e4f3-4586-497c-9365-274691fb63f3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Location"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Location' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"36d04f5e-c37b-4de5-bc45-28fbabd63ddf"},{"name":"/Location/:id","id":"1c331351-3014-4ef2-8c17-e032ee85db74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Location/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Location",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"b332eae5-7483-4548-b7bd-8f4543ae446b","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Location/:id","host":[""],"path":["Location",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"address\": {\n        \"city\": \"New York\",\n        \"line\": [\"123 Main St.\"],\n        \"postalCode\": \"10011\",\n        \"state\": \"NY\"\n    },\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"managingOrganization\": {\n        \"display\": \"demodb\",\n        \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"type\": \"Organization\"\n    },\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-03T12:00:26.286644+00:00\",\n        \"versionId\": \"MTc3MDEyMDAyNjI4NjY0NDAwMA\"\n    },\n    \"name\": \"Provider Location\",\n    \"resourceType\": \"Location\",\n    \"status\": \"active\",\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"use\": \"work\",\n            \"value\": \"1234567890\"\n        }\n    ]\n}\n"},{"id":"219f2a6e-2d47-4b24-b576-ef5ace44fb68","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Location/:id","host":[""],"path":["Location",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"ef6f9245-9121-4d64-887a-517ec685a8d4","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Location/:id","host":[""],"path":["Location",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Location' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"1c331351-3014-4ef2-8c17-e032ee85db74"}],"id":"b729e153-a62a-4f86-8dc8-209a933a3d98","description":"<p>Details and position information for a physical place where services are provided and resources and participants may be stored, found, contained, or accommodated. This includes both incidental locations (a place which is used for healthcare without prior designation or authorization) and dedicated, formally appointed locations.</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-location.html\">US Core Location Profile</a></li>\n</ul>\n","_postman_id":"b729e153-a62a-4f86-8dc8-209a933a3d98","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Medication","item":[{"name":"/Medication","id":"de3529e3-ec86-46b9-a9bd-99d5583795c3","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Medication","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Medication"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"e8114d9e-6e0b-4bd6-b8f2-2d242ddf3633","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Medication"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Medication/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"2\",\n                            \"display\": \"Test Medication\"\n                        }\n                    ],\n                    \"text\": \"Test Medication\"\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-30T08:13:02.762951+00:00\",\n                    \"versionId\": \"MTc2OTc2MDc4Mjc2Mjk1MTAwMA\"\n                },\n                \"resourceType\": \"Medication\",\n                \"status\": \"active\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        }\n    ]\n}\n"},{"id":"129061c2-e5d8-4e18-80d2-e7a4c83d40c3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Medication"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"6e0fd6ce-e58d-4b55-957f-7a4a15f5a2cb","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Medication"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Medication' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"de3529e3-ec86-46b9-a9bd-99d5583795c3"},{"name":"/Medication/:id","id":"fa8c1981-f909-4a32-8d85-0b6703e8282c","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Medication/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Medication",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"c432be03-8530-43e9-921d-1f5f3a8f0b12","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Medication/:id","host":[""],"path":["Medication",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n            \"fullUrl\": \"https://example.com/fhir/Medication/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"2\",\n                            \"display\": \"Test Medication\"\n                        }\n                    ],\n                    \"text\": \"Test Medication\"\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-30T08:13:02.762951+00:00\",\n                    \"versionId\": \"MTc2OTc2MDc4Mjc2Mjk1MTAwMA\"\n                },\n                \"resourceType\": \"Medication\",\n                \"status\": \"active\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }"},{"id":"df847ff2-8e49-4cf7-8164-748bd31381e6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Medication/:id","host":[""],"path":["Medication",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"591a91a3-acb1-49be-a9db-418d544d808d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Medication/:id","host":[""],"path":["Medication",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Medication' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"fa8c1981-f909-4a32-8d85-0b6703e8282c"},{"name":"Medication Search using POST","id":"471b05f8-b1c7-4bde-bd6d-226838f54056","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/Medication/_search","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Medication","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"a50e0223-318e-4e03-bc3d-892f0b911851","name":"Medication bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[]},"url":"/Medication/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Medication/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"2\",\n                            \"display\": \"Test Medication\"\n                        }\n                    ],\n                    \"text\": \"Test Medication\"\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-30T08:13:02.762951+00:00\",\n                    \"versionId\": \"MTc2OTc2MDc4Mjc2Mjk1MTAwMA\"\n                },\n                \"resourceType\": \"Medication\",\n                \"status\": \"active\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Medication/\"\n        }\n    ]\n}\n"},{"id":"d41fa24b-3457-4adb-a429-9853f7a79164","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Medication/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"85d44e97-46fe-42c4-9f63-090af2e2f3eb","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Medication/_search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Medication' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"471b05f8-b1c7-4bde-bd6d-226838f54056"}],"id":"2067ba7e-b52e-4e7f-abbf-290610e0f482","description":"<p>Information about a medication including the medication name, code, form, ingredients, and packaging. This resource is primarily used to identify and define a medication for the purposes of prescribing, dispensing, and administering a medication as well as for making statements about medication use.</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medication.html\">US Core Medication Profile</a></li>\n</ul>\n","_postman_id":"2067ba7e-b52e-4e7f-abbf-290610e0f482","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Medication Dispense","item":[{"name":"/MedicationDispense","id":"0fc56ec0-1e75-4eea-8ba5-11c21fc2bef4","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/MedicationDispense?_revinclude&patient","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["MedicationDispense"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":null},{"description":{"content":"<p>Who the dispense is for</p>\n","type":"text/plain"},"key":"patient","value":null}],"variable":[]}},"response":[{"id":"28ed9b10-5df0-40ac-9a2e-ee0791cbc1dc","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationDispense?patient=987fcdeb-51a2-43d7-b789-123456789abc","host":[""],"path":["MedicationDispense"],"query":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc","type":"text"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/MedicationDispense/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"authorizingPrescription\": [\n                    {\n                        \"display\": \"49440\",\n                        \"reference\": \"MedicationRequest/fedcba98-7654-3210-fedc-ba9876543210\",\n                        \"type\": \"MedicationRequest\"\n                    }\n                ],\n                \"category\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"community\",\n                            \"display\": \"Community\",\n                            \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n                        }\n                    ]\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"doseAndRate\": [\n                            {\n                                \"doseQuantity\": {\n                                    \"unit\": \"capsule\",\n                                    \"value\": 1\n                                }\n                            }\n                        ],\n                        \"text\": \"1 capsule\",\n                        \"timing\": {\n                            \"code\": {\n                                \"text\": \"as directed\"\n                            }\n                        }\n                    }\n                ],\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"1502\"\n                    }\n                ],\n                \"medicationReference\": {\n                    \"display\": \"2\",\n                    \"reference\": \"Medication/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Medication\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-30T08:50:04.253673+00:00\",\n                    \"versionId\": \"MTc2OTc2MzAwNDI1MzY3MzAwMA\"\n                },\n                \"quantity\": {\n                    \"unit\": \"capsule\",\n                    \"value\": 1\n                },\n                \"resourceType\": \"MedicationDispense\",\n                \"status\": \"completed\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Patient\"\n                },\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"unknown\",\n                            \"display\": \"Unknown\",\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                        }\n                    ]\n                },\n                \"whenHandedOver\": \"2026-01-30T03:07:24-05:00\",\n                \"whenPrepared\": \"2026-01-30T03:07:24-05:00\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/MedicationDispense/?patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/MedicationDispense/?patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/MedicationDispense/?patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        }\n    ]\n}\n"},{"id":"459fb25c-b794-442e-b1e5-d9c956f999d2","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationDispense?patient=987fcdeb-51a2-43d7-b789-123456789abc","host":[""],"path":["MedicationDispense"],"query":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"878ccdc7-5203-44b1-b385-1998c8b23489","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationDispense?patient=987fcdeb-51a2-43d7-b789-123456789abc","host":[""],"path":["MedicationDispense"],"query":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'MedicationDispense' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"0fc56ec0-1e75-4eea-8ba5-11c21fc2bef4"},{"name":"/MedicationDispense/:id","id":"5ffed987-f74f-4ee2-ae72-3b5de800d2d5","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/MedicationDispense/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["MedicationDispense",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"5d316035-12f0-4fad-9f86-a9ff09de0dce","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationDispense/:id","host":[""],"path":["MedicationDispense",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"authorizingPrescription\": [\n        {\n            \"display\": \"49440\",\n            \"reference\": \"MedicationRequest/fedcba98-7654-3210-fedc-ba9876543210\",\n            \"type\": \"MedicationRequest\"\n        }\n    ],\n    \"category\": {\n        \"coding\": [\n            {\n                \"code\": \"community\",\n                \"display\": \"Community\",\n                \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n            }\n        ]\n    },\n    \"dosageInstruction\": [\n        {\n            \"doseAndRate\": [\n                {\n                    \"doseQuantity\": {\n                        \"unit\": \"capsule\",\n                        \"value\": 1\n                    }\n                }\n            ],\n            \"text\": \"1 capsule\",\n            \"timing\": {\n                \"code\": {\n                    \"text\": \"as directed\"\n                }\n            }\n        }\n    ],\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"1502\"\n        }\n    ],\n    \"medicationReference\": {\n        \"display\": \"2\",\n        \"reference\": \"Medication/456e7890-f12b-34c5-d678-901234567def\",\n        \"type\": \"Medication\"\n    },\n    \"meta\": {\n        \"lastUpdated\": \"2026-01-30T08:50:04.253673+00:00\",\n        \"versionId\": \"MTc2OTc2MzAwNDI1MzY3MzAwMA\"\n    },\n    \"quantity\": {\n        \"unit\": \"capsule\",\n        \"value\": 1\n    },\n    \"resourceType\": \"MedicationDispense\",\n    \"status\": \"completed\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"type\": \"Patient\"\n    },\n    \"type\": {\n        \"coding\": [\n            {\n                \"code\": \"unknown\",\n                \"display\": \"Unknown\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n            }\n        ]\n    },\n    \"whenHandedOver\": \"2026-01-30T03:07:24-05:00\",\n    \"whenPrepared\": \"2026-01-30T03:07:24-05:00\"\n}\n"},{"id":"87b22f80-b831-4756-a14e-d5e1d0dec443","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationDispense/:id","host":[""],"path":["MedicationDispense",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"a5ceb7ac-7214-4de9-902f-25ca9f9918e3","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationDispense/:id","host":[""],"path":["MedicationDispense",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'MedicationDispense' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"5ffed987-f74f-4ee2-ae72-3b5de800d2d5"},{"name":"MedicationDispense Search using POST","id":"0145cda4-d0a4-4c81-825d-5c8d0dbae2a8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","type":"text","uuid":"2b7dbfe2-dfc4-4182-9ff4-cf164061067c","description":"<p>Who the dispense is for</p>\n"}]},"url":"/MedicationDispense","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["MedicationDispense"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"12b4c913-ee37-4bbf-abe0-6adb75fa58cb","name":"MedicationDispense bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"265f48d6-04ce-40ce-95bb-b829c2dbb83d"}]},"url":"/MedicationDispense/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/MedicationDispense/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"authorizingPrescription\": [\n                    {\n                        \"display\": \"49440\",\n                        \"reference\": \"MedicationRequest/fedcba98-7654-3210-fedc-ba9876543210\",\n                        \"type\": \"MedicationRequest\"\n                    }\n                ],\n                \"category\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"community\",\n                            \"display\": \"Community\",\n                            \"system\": \"http://terminology.hl7.org/fhir/CodeSystem/medicationdispense-category\"\n                        }\n                    ]\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"doseAndRate\": [\n                            {\n                                \"doseQuantity\": {\n                                    \"unit\": \"capsule\",\n                                    \"value\": 1\n                                }\n                            }\n                        ],\n                        \"text\": \"1 capsule\",\n                        \"timing\": {\n                            \"code\": {\n                                \"text\": \"as directed\"\n                            }\n                        }\n                    }\n                ],\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"1502\"\n                    }\n                ],\n                \"medicationReference\": {\n                    \"display\": \"2\",\n                    \"reference\": \"Medication/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Medication\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-30T08:50:04.253673+00:00\",\n                    \"versionId\": \"MTc2OTc2MzAwNDI1MzY3MzAwMA\"\n                },\n                \"quantity\": {\n                    \"unit\": \"capsule\",\n                    \"value\": 1\n                },\n                \"resourceType\": \"MedicationDispense\",\n                \"status\": \"completed\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Patient\"\n                },\n                \"type\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"unknown\",\n                            \"display\": \"Unknown\",\n                            \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                        }\n                    ]\n                },\n                \"whenHandedOver\": \"2026-01-30T03:07:24-05:00\",\n                \"whenPrepared\": \"2026-01-30T03:07:24-05:00\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/MedicationDispense/?patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/MedicationDispense/?patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/MedicationDispense/?patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        }\n    ]\n}\n"},{"id":"6a6575e5-533e-4f41-9546-e8a2d844a62b","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"5aa2221e-eff8-4b83-a452-c49f45698ca7"}]},"url":"/MedicationDispense/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"698b8387-7376-4b0e-a65d-a823064da4c9","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"},{"key":"Content-Type","value":"application/x-www-form-urlencoded","type":"text"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","type":"text","uuid":"d21669a0-14fd-4214-aa27-64358368cd75"}]},"url":"/MedicationDispense/_search"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'MedicationDispense' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"0145cda4-d0a4-4c81-825d-5c8d0dbae2a8"}],"id":"0a2c191a-cc8e-4b5d-8dee-17bda0e3ddc4","description":"<p>Provision of a supply of medication with the intention that it is subsequently consumed by a patient (usually in response to a prescription).</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationdispense.html\">US Core MedicationDispense Profile</a></li>\n</ul>\n","_postman_id":"0a2c191a-cc8e-4b5d-8dee-17bda0e3ddc4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Medication Request","item":[{"name":"/MedicationRequest","id":"a36a5bc3-5636-4c40-a664-cdefde813f49","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/MedicationRequest?_include=&intent=&patient=&status=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["MedicationRequest"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_include","value":""},{"description":{"content":"<p>proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option</p>\n","type":"text/plain"},"key":"intent","value":""},{"description":{"content":"<p>Who or group medication request is for</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>active | on-hold | cancelled | completed | entered-in-error | stopped | draft | unknown</p>\n","type":"text/plain"},"key":"status","value":""}],"variable":[]}},"response":[{"id":"31210742-dde0-4454-9f29-a39b1d78261f","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationRequest?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000&status=active","host":[""],"path":["MedicationRequest"],"query":[{"key":"intent","value":"original-order"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"status","value":"active"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/MedicationRequest/?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/MedicationRequest/?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/MedicationRequest/?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/MedicationRequest/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"authoredOn\": \"2015-04-19T19:16:25.000Z\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"community\",\n                                \"display\": \"Community\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\"\n                            }\n                        ]\n                    }\n                ],\n                \"dispenseRequest\": {\n                    \"initialFill\": {\n                        \"quantity\": {\n                            \"value\": 0\n                        }\n                    },\n                    \"numberOfRepeatsAllowed\": 0,\n                    \"quantity\": {\n                        \"value\": 1\n                    }\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"doseAndRate\": [\n                            {\n                                \"doseQuantity\": {\n                                    \"value\": 1\n                                }\n                            }\n                        ],\n                        \"text\": \"1 tablet(s) 3 x per Day\",\n                        \"timing\": {\n                            \"code\": {\n                                \"text\": \"Day\"\n                            }\n                        }\n                    }\n                ],\n                \"encounter\": {\n                    \"display\": \"encounter46680\",\n                    \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Encounter\"\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"46680\"\n                    }\n                ],\n                \"intent\": \"original-order\",\n                \"medicationReference\": {\n                    \"display\": \"Xanax\",\n                    \"reference\": \"Medication/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Medication\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T18:00:27.958860+00:00\",\n                    \"versionId\": \"MTc3MDE0MTYyNzk1ODg2MDAwMA\"\n                },\n                \"reasonCode\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"unknown\",\n                                \"display\": \"Unknown\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                            }\n                        ]\n                    }\n                ],\n                \"reportedBoolean\": false,\n                \"requester\": {\n                    \"reference\": \"Practitioner/11111111-2222-3333-4444-555555555555\",\n                    \"type\": \"Practitioner\"\n                },\n                \"resourceType\": \"MedicationRequest\",\n                \"status\": \"active\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"38f1c1e0-79c2-4f3e-a710-0dd8e9e7fe4f","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationRequest?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000&status=active","host":[""],"path":["MedicationRequest"],"query":[{"key":"intent","value":"original-order"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"status","value":"active"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"e2895dcd-3530-4998-85b2-3280f81e7aeb","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationRequest?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000&status=active","host":[""],"path":["MedicationRequest"],"query":[{"key":"intent","value":"original-order"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"status","value":"active"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'MedicationRequest' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"a36a5bc3-5636-4c40-a664-cdefde813f49"},{"name":"/MedicationRequest/:id","id":"90f95523-9e9b-4e50-b6ef-0b0f85f75cef","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/MedicationRequest/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["MedicationRequest",":id"],"host":[""],"query":[],"variable":[{"id":"b78fb9f1-bd41-465d-82d5-131fb816e4ef","description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"1277390","key":"id"}]}},"response":[{"id":"5edfbfd9-110d-419e-b726-eeef5617283e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationRequest/:id","host":[""],"path":["MedicationRequest",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"authoredOn\": \"2015-04-19T19:16:25.000Z\",\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"community\",\n                    \"display\": \"Community\",\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\"\n                }\n            ]\n        }\n    ],\n    \"dispenseRequest\": {\n        \"initialFill\": {\n            \"quantity\": {\n                \"value\": 0\n            }\n        },\n        \"numberOfRepeatsAllowed\": 0,\n        \"quantity\": {\n            \"value\": 1\n        }\n    },\n    \"dosageInstruction\": [\n        {\n            \"doseAndRate\": [\n                {\n                    \"doseQuantity\": {\n                        \"value\": 1\n                    }\n                }\n            ],\n            \"text\": \"1 tablet(s) 3 x per Day\",\n            \"timing\": {\n                \"code\": {\n                    \"text\": \"Day\"\n                }\n            }\n        }\n    ],\n    \"encounter\": {\n        \"display\": \"encounter46680\",\n        \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n        \"type\": \"Encounter\"\n    },\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"46680\"\n        }\n    ],\n    \"intent\": \"original-order\",\n    \"medicationReference\": {\n        \"display\": \"Xanax\",\n        \"reference\": \"Medication/fedcba98-7654-3210-fedc-ba9876543210\",\n        \"type\": \"Medication\"\n    },\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-03T18:00:27.958860+00:00\",\n        \"versionId\": \"MTc3MDE0MTYyNzk1ODg2MDAwMA\"\n    },\n    \"reasonCode\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"unknown\",\n                    \"display\": \"Unknown\",\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                }\n            ]\n        }\n    ],\n    \"reportedBoolean\": false,\n    \"requester\": {\n        \"reference\": \"Practitioner/11111111-2222-3333-4444-555555555555\",\n        \"type\": \"Practitioner\"\n    },\n    \"resourceType\": \"MedicationRequest\",\n    \"status\": \"active\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    }\n}\n"},{"id":"b0654086-1aa8-4999-b6dc-2371d4fc3f43","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationRequest/:id","host":[""],"path":["MedicationRequest",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"3a858b63-7943-49a7-83ce-163d5b11b18b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/MedicationRequest/:id","host":[""],"path":["MedicationRequest",":id"],"variable":[{"key":"id","value":"1277390","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'MedicationRequest' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"90f95523-9e9b-4e50-b6ef-0b0f85f75cef"},{"name":"Medication Request Search using POST","id":"78128e07-6d18-41ca-b2d3-8b4e5ed8d238","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>Who or group medication request is for</p>\n"},{"key":"intent","value":"","description":"<p>proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option</p>\n"},{"key":"status","value":"","description":"<p>active | on-hold | cancelled | completed | entered-in-error | stopped | draft | unknown</p>\n","type":"text","uuid":"5c8067aa-8fa7-43a3-aafc-f326f9231f7d"}]},"url":"/MedicationRequest/_search","description":"<p>This interaction searches a set of MedicationRequest based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/medicationrequest.html\">FHIR documentation for Goal.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["MedicationRequest","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1755f0ec-6c23-4d6d-b89b-82690df1e2c5","name":"MedicationRequest bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"intent","value":"original-order","description":"(Required) proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677&intent=proposal"},{"key":"status","value":"active","type":"text","uuid":"73727c64-d39c-41b6-9ec5-62c38e10bfb5"}]},"url":"/MedicationRequest/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/MedicationRequest/?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000&status=active\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/MedicationRequest/?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000&status=active\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/MedicationRequest/?intent=original-order&patient=123e4567-e89b-12d3-a456-426614174000&status=active\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/MedicationRequest/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"authoredOn\": \"2015-04-19T19:16:25.000Z\",\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"community\",\n                                \"display\": \"Community\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/medicationrequest-category\"\n                            }\n                        ]\n                    }\n                ],\n                \"dispenseRequest\": {\n                    \"initialFill\": {\n                        \"quantity\": {\n                            \"value\": 0\n                        }\n                    },\n                    \"numberOfRepeatsAllowed\": 0,\n                    \"quantity\": {\n                        \"value\": 1\n                    }\n                },\n                \"dosageInstruction\": [\n                    {\n                        \"doseAndRate\": [\n                            {\n                                \"doseQuantity\": {\n                                    \"value\": 1\n                                }\n                            }\n                        ],\n                        \"text\": \"1 tablet(s) 3 x per Day\",\n                        \"timing\": {\n                            \"code\": {\n                                \"text\": \"Day\"\n                            }\n                        }\n                    }\n                ],\n                \"encounter\": {\n                    \"display\": \"encounter46680\",\n                    \"reference\": \"Encounter/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Encounter\"\n                },\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/789abcde-f012-3456-7890-abcdef123456\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"46680\"\n                    }\n                ],\n                \"intent\": \"original-order\",\n                \"medicationReference\": {\n                    \"display\": \"Xanax\",\n                    \"reference\": \"Medication/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Medication\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T18:00:27.958860+00:00\",\n                    \"versionId\": \"MTc3MDE0MTYyNzk1ODg2MDAwMA\"\n                },\n                \"reasonCode\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"unknown\",\n                                \"display\": \"Unknown\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n                            }\n                        ]\n                    }\n                ],\n                \"reportedBoolean\": false,\n                \"requester\": {\n                    \"reference\": \"Practitioner/11111111-2222-3333-4444-555555555555\",\n                    \"type\": \"Practitioner\"\n                },\n                \"resourceType\": \"MedicationRequest\",\n                \"status\": \"active\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"a8177d6c-73c7-4fdb-89f3-b49b6e860c7a","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"intent","value":"proposal","description":"(Required) proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option"},{"key":"patient","value":"11076771","description":"(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677&intent=proposal"},{"key":"status","value":"active","type":"text","uuid":"df3ac6fc-d140-441a-b465-681af3231da5"}]},"url":"/MedicationRequest/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"4ec5ac9b-06ee-426d-bb27-b4a85a262313","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"intent","value":"proposal","description":"(Required) proposal | plan | order | original-order | reflex-order | filler-order | instance-order | option"},{"key":"patient","value":"11076771","description":"(Required) The subject of the report if a patient. Important! The data form of the Request body must be like (example): patient=1107677&intent=proposal"},{"key":"status","value":"active","type":"text","uuid":"85e4a608-ba00-476f-980c-c7d2cdcba8ea"}]},"url":"/MedicationRequest/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'MedicationRequest' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"78128e07-6d18-41ca-b2d3-8b4e5ed8d238"}],"id":"60f5f74f-ea57-41fa-9dce-237700839c6a","description":"<p>An order or request for both supply of the medication and the instructions for administration of the medication to a patient. The resource is called \"MedicationRequest\" rather than \"MedicationPrescription\" or \"MedicationOrder\" to generalize the use across inpatient and outpatient settings, including care plans, etc., and to harmonize with workflow patterns.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-medicationrequest.html\">US Core MedicationRequest Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Medications</td>\n<td>All</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"60f5f74f-ea57-41fa-9dce-237700839c6a","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Observation","item":[{"name":"/Observation","id":"8e16edd5-0602-4863-94f6-b9e3b82f7836","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Observation?_revinclude=Provenance:target&patient=&category=&date=&code=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Observation"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":"Provenance:target"},{"description":{"content":"<p>The subject that the observation is about (if patient)</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>The classification of the type of observation</p>\n","type":"text/plain"},"key":"category","value":""},{"description":{"content":"<p>When this document reference was created</p>\n","type":"text/plain"},"key":"date","value":""},{"description":{"content":"<p>The code of the observation type</p>\n","type":"text/plain"},"key":"code","value":""}],"variable":[]}},"response":[{"id":"272be6cb-7c2e-4839-b328-9386ce44d3ef","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Observation?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000&category=laboratory&date=2020-11-20T00:00:00-05:00","host":[""],"path":["Observation"],"query":[{"key":"code","value":"77068002"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"laboratory"},{"key":"date","value":"2020-11-20T00:00:00-05:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Observation/?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000&category=laboratory&date=2020-11-20T00:00:00-05:00\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Observation/?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000&category=laboratory&date=2020-11-20T00:00:00-05:00\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Observation/?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000&category=laboratory&date=2020-11-20T00:00:00-05:00\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"laboratory\",\n                                \"display\": \"Laboratory\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"27824659\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"https://www.imohealth.com/\"\n                        },\n                        {\n                            \"code\": \"80061\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"https://www.ama-assn.org/topics/cpt-codes\"\n                        },\n                        {\n                            \"code\": \"77068002\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"http://snomed.info/sct\"\n                        },\n                        {\n                            \"code\": \"IMO0001\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"https://loinc.org/\"\n                        }\n                    ],\n                    \"text\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\"\n                },\n                \"derivedFrom\": [\n                    {\n                        \"display\": \"2030\",\n                        \"reference\": \"Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n                        \"type\": \"Observation\"\n                    }\n                ],\n                \"effectiveDateTime\": \"2020-11-20T00:00:00-05:00\",\n                \"hasMember\": [\n                    {\n                        \"display\": \"2030\",\n                        \"reference\": \"Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n                        \"type\": \"Observation\"\n                    }\n                ],\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2030\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T17:13:56.761626+00:00\",\n                    \"versionId\": \"MTc3MDEzODgzNjc2MTYyNjAwMA\"\n                },\n                \"performer\": [\n                    {\n                        \"display\": \"200418001\",\n                        \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n                        \"type\": \"Practitioner\"\n                    }\n                ],\n                \"resourceType\": \"Observation\",\n                \"status\": \"final\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"valueString\": \"results go here\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"61a0345a-f026-4370-8dff-782a7dfdf2cb","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Observation?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000&category=laboratory&date=2020-11-20T00:00:00-05:00","host":[""],"path":["Observation"],"query":[{"key":"code","value":"77068002"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"laboratory"},{"key":"date","value":"2020-11-20T00:00:00-05:00"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"6ec65755-6e38-482e-ae3d-c5f6873ccca1","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Observation?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000&category=laboratory&date=2020-11-20T00:00:00-05:00","host":[""],"path":["Observation"],"query":[{"key":"code","value":"77068002"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"category","value":"laboratory"},{"key":"date","value":"2020-11-20T00:00:00-05:00"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Observation' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"8e16edd5-0602-4863-94f6-b9e3b82f7836"},{"name":"/Observation/:id","id":"39fa9d0a-91f2-4fe9-8a9a-a769af0dcb6f","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/Observation/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Observation",":id"],"host":[""],"query":[],"variable":[{"type":"any","value":"","key":"id"}]}},"response":[{"id":"c2c34a26-02f0-4e42-b1f1-2ce7bff0e81e","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Observation/:id","host":[""],"path":["Observation",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"laboratory\",\n                    \"display\": \"Laboratory\",\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n                }\n            ]\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"code\": \"27824659\",\n                \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                \"system\": \"https://www.imohealth.com/\"\n            },\n            {\n                \"code\": \"80061\",\n                \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                \"system\": \"https://www.ama-assn.org/topics/cpt-codes\"\n            },\n            {\n                \"code\": \"77068002\",\n                \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                \"system\": \"http://snomed.info/sct\"\n            },\n            {\n                \"code\": \"IMO0001\",\n                \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                \"system\": \"https://loinc.org/\"\n            }\n        ],\n        \"text\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\"\n    },\n    \"derivedFrom\": [\n        {\n            \"display\": \"2030\",\n            \"reference\": \"Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"type\": \"Observation\"\n        }\n    ],\n    \"effectiveDateTime\": \"2020-11-20T00:00:00-05:00\",\n    \"hasMember\": [\n        {\n            \"display\": \"2030\",\n            \"reference\": \"Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"type\": \"Observation\"\n        }\n    ],\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"2030\"\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-03T17:13:56.761626+00:00\",\n        \"versionId\": \"MTc3MDEzODgzNjc2MTYyNjAwMA\"\n    },\n    \"performer\": [\n        {\n            \"display\": \"200418001\",\n            \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Practitioner\"\n        }\n    ],\n    \"resourceType\": \"Observation\",\n    \"status\": \"final\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    },\n    \"valueString\": \"results go here\"\n}\n"},{"id":"2b4aa1f5-e67d-46b4-87e0-2242773a0d84","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Observation/:id","host":[""],"path":["Observation",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"ded1207a-ba9a-47d2-b963-9e339701c256","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Observation/:id","host":[""],"path":["Observation",":id"],"variable":[{"key":"id","value":"146259","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Observation' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"39fa9d0a-91f2-4fe9-8a9a-a769af0dcb6f"},{"name":"Observations Search using POST","id":"e90c3ed5-d215-4c8d-ab8a-ba0dfad9ecf8","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"","description":"<p>The code of the observation type</p>\n"},{"key":"patient","value":"","description":"<p>The subject that the observation is about (if patient)</p>\n"},{"key":"date","value":"","description":"<p>When this document reference was created</p>\n","type":"text","uuid":"a69524dc-c787-4c53-84ea-a9f6de69a932"},{"key":"category","value":"","description":"<p>The classification of the type of observation</p>\n","type":"text","uuid":"1e554c56-d393-4811-aa65-6a5d81512c57"}]},"url":"/Observation/_search","description":"<p>This interaction searches a set of Observations based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/observation.html\">FHIR documentation for Observation.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Observation","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"2a1bdb60-2431-4615-8186-feef586eb460","name":"Observation bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"77068002"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"date","value":"2020-11-20T00:00:00-05:00","type":"text","uuid":"567e1969-05cc-4780-b1a4-24a30e49007e"},{"key":"category","value":"laboratory","type":"text","uuid":"f06a2f3b-2779-4f11-8dfb-508726f51a35"}]},"url":"/Observation/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Observation/?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Observation/?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Observation/?code=77068002&patient=123e4567-e89b-12d3-a456-426614174000\"\n        }\n    ],\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"category\": [\n                    {\n                        \"coding\": [\n                            {\n                                \"code\": \"laboratory\",\n                                \"display\": \"Laboratory\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/observation-category\"\n                            }\n                        ]\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"27824659\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"https://www.imohealth.com/\"\n                        },\n                        {\n                            \"code\": \"80061\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"https://www.ama-assn.org/topics/cpt-codes\"\n                        },\n                        {\n                            \"code\": \"77068002\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"http://snomed.info/sct\"\n                        },\n                        {\n                            \"code\": \"IMO0001\",\n                            \"display\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\",\n                            \"system\": \"https://loinc.org/\"\n                        }\n                    ],\n                    \"text\": \"Cholesterol and high density lipoprotein (HDL) cholesterol measurement\"\n                },\n                \"derivedFrom\": [\n                    {\n                        \"display\": \"2030\",\n                        \"reference\": \"Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n                        \"type\": \"Observation\"\n                    }\n                ],\n                \"effectiveDateTime\": \"2020-11-20T00:00:00-05:00\",\n                \"hasMember\": [\n                    {\n                        \"display\": \"2030\",\n                        \"reference\": \"Observation/987fcdeb-51a2-43d7-b789-123456789abc\",\n                        \"type\": \"Observation\"\n                    }\n                ],\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"2030\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-03T17:13:56.761626+00:00\",\n                    \"versionId\": \"MTc3MDEzODgzNjc2MTYyNjAwMA\"\n                },\n                \"performer\": [\n                    {\n                        \"display\": \"200418001\",\n                        \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n                        \"type\": \"Practitioner\"\n                    }\n                ],\n                \"resourceType\": \"Observation\",\n                \"status\": \"final\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n                    \"type\": \"Patient\"\n                },\n                \"valueString\": \"results go here\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ]\n}\n"},{"id":"7ce01a5f-8129-486a-887d-6e81a09c671e","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"code","value":"77068002"},{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"}]},"url":"/Observation/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"96ea3f7d-9e27-4012-89a1-3e23ba3bee9c","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"123e4567-e89b-12d3-a456-426614174000"},{"key":"code","value":"77068002","type":"text","uuid":"d169a049-9f3b-4755-8af1-373525883300"}]},"url":"/Observation/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Observation' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"e90c3ed5-d215-4c8d-ab8a-ba0dfad9ecf8"}],"id":"ecdd0e21-05ad-4143-9cb0-72c772c760b6","description":"<p>Measurements and simple assertions made about a patient, device or other subject.</p>\n<p><strong>The following profiles are supported</strong>:</p>\n<ul>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-observation-lab.html\">US Core Laboratory Result Observation Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-pediatric-bmi-for-age.html\">US Core Pediatric BMI for Age Observation Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-head-occipital-frontal-circumference-percentile.html\">US Core Pediatric Head Occipital-frontal Circumference Percentile Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-pediatric-weight-for-height.html\">US Core Pediatric Weight for Height Observation Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-pulse-oximetry.html\">US Core Pulse Oximetry Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-smokingstatus.html\">US Core Smoking Status Observation Profile</a></p>\n</li>\n<li><p><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-vital-signs.html\">US Core Vital Signs Profile</a></p>\n</li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Smoking Status</td>\n<td>Observation.code = \"72166-2\"</td>\n</tr>\n<tr>\n<td>Diastolic Blood Pressure</td>\n<td>Observation.code = \"8462-4\"</td>\n</tr>\n<tr>\n<td>Systolic Blood Pressure</td>\n<td>Observation.code = \"8480-6\"</td>\n</tr>\n<tr>\n<td>Body Height</td>\n<td>Observation.code = \"8302-2\"</td>\n</tr>\n<tr>\n<td>Body Weight</td>\n<td>Observation.code = \"29463-7\"</td>\n</tr>\n<tr>\n<td>Heart Rate</td>\n<td>Observation.code = \"8867-4\"</td>\n</tr>\n<tr>\n<td>Respiratory Rate</td>\n<td>Observation.code = \"9279-1 \"</td>\n</tr>\n<tr>\n<td>Body Temperature</td>\n<td>Observation.code = \"8310-5\"</td>\n</tr>\n<tr>\n<td>Pulse Oximetry</td>\n<td>Observation.code = \"2708-6\"</td>\n</tr>\n<tr>\n<td>Inhaled Oxygen Concentration</td>\n<td>Observation.code = \"59408-5\"</td>\n</tr>\n<tr>\n<td>BMI Percentile (2-20 years old)</td>\n<td>Observation.code = \"59576-9\"</td>\n</tr>\n<tr>\n<td>Weight-for-Length Percentile (Birth-36 months)</td>\n<td>Observation.code = \"77606-2\"</td>\n</tr>\n<tr>\n<td>Occipital-frontal Head Circumference Percentile (Birth-36 months)</td>\n<td>Observation.code = \"8289-1\"</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"ecdd0e21-05ad-4143-9cb0-72c772c760b6","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Organization","item":[{"name":"/Organization","id":"0ca7fd6f-7c2c-4905-a650-f872e3596b3b","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Organization","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Organization"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"1b88b6ac-f2c9-4b14-99e0-54aceed44f96","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Organization"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Organization/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"active\": true,\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"Bridge\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T12:26:32.043246+00:00\",\n                    \"versionId\": \"MTc3MDIwNzk5MjA0MzI0NjAwMA\"\n                },\n                \"name\": \"Bridge\",\n                \"resourceType\": \"Organization\"\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Organization/\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Organization/\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Organization/\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Organization/\"\n        }\n    ]\n}\n"},{"id":"1a168d08-9917-4442-b4ff-016b44f0e27c","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Organization"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"173b1255-9cb1-49e0-9ea8-74b844b71184","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Organization"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Organization' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"0ca7fd6f-7c2c-4905-a650-f872e3596b3b"},{"name":"/Organization/:id","id":"4c8f9b69-ed3f-49a0-a6da-05b145e5c9ae","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Organization/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Organization",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"9620b336-14c7-4991-a902-cfb4451f5d18","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Organization/:id","host":[""],"path":["Organization",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"active\": true,\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"identifier\": [\n        {\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"Bridge\"\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-04T12:26:32.043246+00:00\",\n        \"versionId\": \"MTc3MDIwNzk5MjA0MzI0NjAwMA\"\n    },\n    \"name\": \"Bridge\",\n    \"resourceType\": \"Organization\"\n}\n"},{"id":"a1e2e78c-32a0-4fcb-a677-60b2918bd16d","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Organization/:id","host":[""],"path":["Organization",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"393d770a-5206-4437-95a7-74708f538187","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Organization/:id","host":[""],"path":["Organization",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Organization' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"4c8f9b69-ed3f-49a0-a6da-05b145e5c9ae"}],"id":"969a13d9-a648-4a7c-bf79-6cdfaf4d23a7","description":"<p>A formally or informally recognized grouping of people or organizations formed for the purpose of achieving some form of collective action. Includes companies, institutions, corporations, departments, community groups, healthcare practice groups, payer/insurer, etc.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-encounter.html\"></a><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-organization.html\">US Core Organization Profile</a></li>\n</ul>\n","_postman_id":"969a13d9-a648-4a7c-bf79-6cdfaf4d23a7","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Patient","item":[{"name":"/Patient","id":"33cba1aa-2057-4a7f-a184-eb34b89a9087","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Patient?_revinclude&birthdate=&name=&gender=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Patient"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":null},{"description":{"content":"<p>The patient's date of birth</p>\n","type":"text/plain"},"key":"birthdate","value":""},{"description":{"content":"<p>A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text</p>\n","type":"text/plain"},"key":"name","value":""},{"description":{"content":"<p>Gender of the patient</p>\n","type":"text/plain"},"key":"gender","value":""}],"variable":[]}},"response":[{"id":"21fe19c6-2276-4d36-9e60-9d9564daed0d","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Patient?name=Arthur&gender=male&birthdate=1945-01-01","host":[""],"path":["Patient"],"query":[{"key":"name","value":"Arthur"},{"key":"gender","value":"male"},{"key":"birthdate","value":"1945-01-01"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Patient/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"active\": true,\n                \"address\": [\n                    {\n                        \"city\": \"Hollybush\",\n                        \"line\": [\"848 Main St\", \"11B\"],\n                        \"period\": {\n                            \"end\": \"2016-08-01T00:00:00-04:00\",\n                            \"start\": \"2015-09-21T00:00:00-04:00\"\n                        },\n                        \"postalCode\": \"12345\",\n                        \"state\": \"NY\",\n                        \"use\": \"old\"\n                    },\n                    {\n                        \"city\": \"New York\",\n                        \"line\": [\"333 33rd street\"],\n                        \"period\": {\n                            \"start\": \"2015-01-01T00:00:00-05:00\"\n                        },\n                        \"postalCode\": \"10001\",\n                        \"state\": \"NY\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"birthDate\": \"1945-01-01\",\n                \"communication\": [\n                    {\n                        \"language\": {\n                            \"coding\": [\n                                {\n                                    \"system\": \"https://www.iso.org/iso-3166-country-codes.html\"\n                                }\n                            ],\n                            \"text\": \"Vietnamese\"\n                        },\n                        \"preferred\": true\n                    }\n                ],\n                \"extension\": [\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"text\",\n                                \"valueString\": \"Asian,White\"\n                            },\n                            {\n                                \"url\": \"ombCategory\",\n                                \"valueCoding\": {\n                                    \"code\": \"2028-9\"\n                                }\n                            },\n                            {\n                                \"url\": \"ombCategory\",\n                                \"valueCoding\": {\n                                    \"code\": \"2106-3\"\n                                }\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\n                    },\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"text\",\n                                \"valueString\": \"Asturian\"\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\n                    },\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"tribalAffiliation\",\n                                \"valueCodeableConcept\": {\n                                    \"coding\": [\n                                        {\n                                            \"code\": \"UNK\",\n                                            \"display\": \"Unknown\",\n                                            \"system\": \"http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS\"\n                                        }\n                                    ],\n                                    \"text\": \"Unknown\"\n                                }\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-tribal-affiliation\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\",\n                        \"valueCode\": \"M\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-sex\",\n                        \"valueCode\": \"248153007\"\n                    }\n                ],\n                \"gender\": \"male\",\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"type\": {\n                            \"coding\": [\n                                {\n                                    \"code\": \"MR\",\n                                    \"display\": \"Medical Record Number\",\n                                    \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n                                }\n                            ],\n                            \"text\": \"Medical Record Number\"\n                        },\n                        \"use\": \"official\",\n                        \"value\": \"100128101\"\n                    },\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-ssn\",\n                        \"value\": \"999999999\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"display\": \"demodb\",\n                    \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Organization\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T03:54:11.134764+00:00\",\n                    \"versionId\": \"MTc3MDE3NzI1MTEzNDc2NDAwMA\"\n                },\n                \"name\": [\n                    {\n                        \"family\": \"Aardvark\",\n                        \"given\": [\"Arthur\"],\n                        \"suffix\": [\"Sr\"],\n                        \"use\": \"official\"\n                    },\n                    {\n                        \"family\": \"Arthur\",\n                        \"given\": [\"Aardvark\"],\n                        \"use\": \"old\"\n                    }\n                ],\n                \"resourceType\": \"Patient\",\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"use\": \"home\",\n                        \"value\": \"2127776761\"\n                    },\n                    {\n                        \"system\": \"phone\",\n                        \"use\": \"mobile\",\n                        \"value\": \"2127776763\"\n                    },\n                    {\n                        \"system\": \"email\",\n                        \"use\": \"home\",\n                        \"value\": \"lgros@radicle-health.com\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        }\n    ]\n}\n"},{"id":"08f51e89-242c-4206-af64-66ee51df39a1","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Patient?birthdate=1945-01-01&gender=male&name=Arthur","host":[""],"path":["Patient"],"query":[{"key":"birthdate","value":"1945-01-01"},{"key":"gender","value":"male"},{"key":"name","value":"Arthur"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"7d63d145-427d-4dff-9234-6736dda6129a","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Patient?birthdate=1945-01-01&gender=male&name=Arthur","host":[""],"path":["Patient"],"query":[{"key":"birthdate","value":"1945-01-01"},{"key":"gender","value":"male"},{"key":"name","value":"Arthur"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Patient' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"33cba1aa-2057-4a7f-a184-eb34b89a9087"},{"name":"/Patient/:id","id":"712354db-5137-4754-82ae-40168224110d","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[],"url":"/Patient/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Patient",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(required)</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"8fb184c6-5692-4efd-96a3-64e284726039","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Patient/:id","host":[""],"path":["Patient",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"active\": true,\n    \"address\": [\n        {\n            \"city\": \"Hollybush\",\n            \"line\": [\"848 Main St\", \"11B\"],\n            \"period\": {\n                \"end\": \"2016-08-01T00:00:00-04:00\",\n                \"start\": \"2015-09-21T00:00:00-04:00\"\n            },\n            \"postalCode\": \"12345\",\n            \"state\": \"NY\",\n            \"use\": \"old\"\n        },\n        {\n            \"city\": \"New York\",\n            \"line\": [\"333 33rd street\"],\n            \"period\": {\n                \"start\": \"2015-01-01T00:00:00-05:00\"\n            },\n            \"postalCode\": \"10001\",\n            \"state\": \"NY\",\n            \"use\": \"home\"\n        }\n    ],\n    \"birthDate\": \"1945-01-01\",\n    \"communication\": [\n        {\n            \"language\": {\n                \"coding\": [\n                    {\n                        \"system\": \"https://www.iso.org/iso-3166-country-codes.html\"\n                    }\n                ],\n                \"text\": \"Vietnamese\"\n            },\n            \"preferred\": true\n        }\n    ],\n    \"extension\": [\n        {\n            \"extension\": [\n                {\n                    \"url\": \"text\",\n                    \"valueString\": \"Asian,White\"\n                },\n                {\n                    \"url\": \"ombCategory\",\n                    \"valueCoding\": {\n                        \"code\": \"2028-9\"\n                    }\n                },\n                {\n                    \"url\": \"ombCategory\",\n                    \"valueCoding\": {\n                        \"code\": \"2106-3\"\n                    }\n                }\n            ],\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\n        },\n        {\n            \"extension\": [\n                {\n                    \"url\": \"text\",\n                    \"valueString\": \"Asturian\"\n                }\n            ],\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\n        },\n        {\n            \"extension\": [\n                {\n                    \"url\": \"tribalAffiliation\",\n                    \"valueCodeableConcept\": {\n                        \"coding\": [\n                            {\n                                \"code\": \"UNK\",\n                                \"display\": \"Unknown\",\n                                \"system\": \"http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS\"\n                            }\n                        ],\n                        \"text\": \"Unknown\"\n                    }\n                }\n            ],\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-tribal-affiliation\"\n        },\n        {\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\",\n            \"valueCode\": \"M\"\n        },\n        {\n            \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-sex\",\n            \"valueCode\": \"248153007\"\n        }\n    ],\n    \"gender\": \"male\",\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"type\": {\n                \"coding\": [\n                    {\n                        \"code\": \"MR\",\n                        \"display\": \"Medical Record Number\",\n                        \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n                    }\n                ],\n                \"text\": \"Medical Record Number\"\n            },\n            \"use\": \"official\",\n            \"value\": \"100128101\"\n        },\n        {\n            \"system\": \"http://hl7.org/fhir/sid/us-ssn\",\n            \"value\": \"999999999\"\n        }\n    ],\n    \"managingOrganization\": {\n        \"display\": \"demodb\",\n        \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n        \"type\": \"Organization\"\n    },\n    \"meta\": {\n        \"lastUpdated\": \"2026-02-04T03:54:11.134764+00:00\",\n        \"versionId\": \"MTc3MDE3NzI1MTEzNDc2NDAwMA\"\n    },\n    \"name\": [\n        {\n            \"family\": \"Aardvark\",\n            \"given\": [\"Arthur\"],\n            \"suffix\": [\"Sr\"],\n            \"use\": \"official\"\n        },\n        {\n            \"family\": \"Arthur\",\n            \"given\": [\"Aardvark\"],\n            \"use\": \"old\"\n        }\n    ],\n    \"resourceType\": \"Patient\",\n    \"telecom\": [\n        {\n            \"system\": \"phone\",\n            \"use\": \"home\",\n            \"value\": \"2127776761\"\n        },\n        {\n            \"system\": \"phone\",\n            \"use\": \"mobile\",\n            \"value\": \"2127776763\"\n        },\n        {\n            \"system\": \"email\",\n            \"use\": \"home\",\n            \"value\": \"lgros@radicle-health.com\"\n        }\n    ]\n}\n"},{"id":"6e87ca9f-135d-4474-a26c-aeb8b0cad277","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Patient/:id","host":[""],"path":["Patient",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"074801a3-9937-46c3-98b1-7ef17b39b140","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Patient/:id","host":[""],"path":["Patient",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Patient' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"712354db-5137-4754-82ae-40168224110d"},{"name":"Patients Search using POST","id":"12859457-4355-4034-9b3c-c7ea808d2869","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[],"body":{"mode":"urlencoded","urlencoded":[{"key":"birthdate","value":"","description":"<p>The patient's date of birth</p>\n","type":"text","uuid":"ef798fed-74ab-4a7f-97db-08dbf1caf70c"},{"key":"name","value":"","description":"<p>A server defined search that may match any of the string fields in the HumanName, including family, give, prefix, suffix, suffix, and/or text</p>\n","type":"text","uuid":"ca98b3d4-fdaf-46ec-97a1-7b0d80b2c952"},{"key":"gender","value":"","description":"<p>Gender of the patient</p>\n","type":"text","uuid":"a257c4f5-35f7-4652-97e3-18e2191a84d3"}]},"url":"/Patient/_search","description":"<p>This interaction searches a set of Patients based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/patient.html\">FHIR documentation for Patient.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Patient","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"66a2e416-2a01-4d4d-b59c-98da80250b5f","name":"Patient bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"Arthura"},{"key":"birthdate","value":"1945-01-01","type":"text","uuid":"688bcf23-465e-460d-8484-c96846083635"},{"key":"gender","value":"M","type":"text","uuid":"b51d0038-f3c8-4bae-b169-37f68005a78b"}]},"url":"/Patient/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Patient/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"active\": true,\n                \"address\": [\n                    {\n                        \"city\": \"Hollybush\",\n                        \"line\": [\"848 Main St\", \"11B\"],\n                        \"period\": {\n                            \"end\": \"2016-08-01T00:00:00-04:00\",\n                            \"start\": \"2015-09-21T00:00:00-04:00\"\n                        },\n                        \"postalCode\": \"12345\",\n                        \"state\": \"NY\",\n                        \"use\": \"old\"\n                    },\n                    {\n                        \"city\": \"New York\",\n                        \"line\": [\"333 33rd street\"],\n                        \"period\": {\n                            \"start\": \"2015-01-01T00:00:00-05:00\"\n                        },\n                        \"postalCode\": \"10001\",\n                        \"state\": \"NY\",\n                        \"use\": \"home\"\n                    }\n                ],\n                \"birthDate\": \"1945-01-01\",\n                \"communication\": [\n                    {\n                        \"language\": {\n                            \"coding\": [\n                                {\n                                    \"system\": \"https://www.iso.org/iso-3166-country-codes.html\"\n                                }\n                            ],\n                            \"text\": \"Vietnamese\"\n                        },\n                        \"preferred\": true\n                    }\n                ],\n                \"extension\": [\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"text\",\n                                \"valueString\": \"Asian,White\"\n                            },\n                            {\n                                \"url\": \"ombCategory\",\n                                \"valueCoding\": {\n                                    \"code\": \"2028-9\"\n                                }\n                            },\n                            {\n                                \"url\": \"ombCategory\",\n                                \"valueCoding\": {\n                                    \"code\": \"2106-3\"\n                                }\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\"\n                    },\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"text\",\n                                \"valueString\": \"Asturian\"\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\"\n                    },\n                    {\n                        \"extension\": [\n                            {\n                                \"url\": \"tribalAffiliation\",\n                                \"valueCodeableConcept\": {\n                                    \"coding\": [\n                                        {\n                                            \"code\": \"UNK\",\n                                            \"display\": \"Unknown\",\n                                            \"system\": \"http://terminology.hl7.org/CodeSystem/v3-TribalEntityUS\"\n                                        }\n                                    ],\n                                    \"text\": \"Unknown\"\n                                }\n                            }\n                        ],\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-tribal-affiliation\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\",\n                        \"valueCode\": \"M\"\n                    },\n                    {\n                        \"url\": \"http://hl7.org/fhir/us/core/StructureDefinition/us-core-sex\",\n                        \"valueCode\": \"248153007\"\n                    }\n                ],\n                \"gender\": \"male\",\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"type\": {\n                            \"coding\": [\n                                {\n                                    \"code\": \"MR\",\n                                    \"display\": \"Medical Record Number\",\n                                    \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0203\"\n                                }\n                            ],\n                            \"text\": \"Medical Record Number\"\n                        },\n                        \"use\": \"official\",\n                        \"value\": \"100128101\"\n                    },\n                    {\n                        \"system\": \"http://hl7.org/fhir/sid/us-ssn\",\n                        \"value\": \"999999999\"\n                    }\n                ],\n                \"managingOrganization\": {\n                    \"display\": \"demodb\",\n                    \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                    \"type\": \"Organization\"\n                },\n                \"meta\": {\n                    \"lastUpdated\": \"2026-02-04T03:54:11.134764+00:00\",\n                    \"versionId\": \"MTc3MDE3NzI1MTEzNDc2NDAwMA\"\n                },\n                \"name\": [\n                    {\n                        \"family\": \"Aardvark\",\n                        \"given\": [\"Arthur\"],\n                        \"suffix\": [\"Sr\"],\n                        \"use\": \"official\"\n                    },\n                    {\n                        \"family\": \"Arthur\",\n                        \"given\": [\"Aardvark\"],\n                        \"use\": \"old\"\n                    }\n                ],\n                \"resourceType\": \"Patient\",\n                \"telecom\": [\n                    {\n                        \"system\": \"phone\",\n                        \"use\": \"home\",\n                        \"value\": \"2127776761\"\n                    },\n                    {\n                        \"system\": \"phone\",\n                        \"use\": \"mobile\",\n                        \"value\": \"2127776763\"\n                    },\n                    {\n                        \"system\": \"email\",\n                        \"use\": \"home\",\n                        \"value\": \"lgros@radicle-health.com\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Patient/?birthdate=1945-01-01&gender=male&name=Arthur\"\n        }\n    ]\n}\n"},{"id":"b6aa2ee5-dc8c-41fb-beac-b94c090c0db7","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"Arthur"}]},"url":"/Patient/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"9ecf7a9c-8f60-4637-81fb-ad167ac5e050","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"name","value":"Arthura","description":"(Required) The resource identity. Important! The data form of the Request body must be like (example): _id=11076771"}]},"url":"/Patient/_search"},"status":"Not Found","code":404,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Patient' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"12859457-4355-4034-9b3c-c7ea808d2869"}],"id":"10204543-ec37-4203-9416-c72148d8514e","description":"<p>Demographics and other administrative information about an individual or animal receiving care or other health-related services.</p>\n<p><strong>The following profiles are supported</strong>:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-patient.html\">US Core Patient Profile</a></li>\n</ul>\n<p><strong>US Core Data Element:</strong></p>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>First Name  <br />Middle Name</td>\n<td>Patient.name.given</td>\n</tr>\n<tr>\n<td>Last Name</td>\n<td>Patient.name.family</td>\n</tr>\n<tr>\n<td>Previous Name</td>\n<td>Patient.name</td>\n</tr>\n<tr>\n<td>Suffix</td>\n<td>Patient.name.suffix</td>\n</tr>\n<tr>\n<td>Date of Birth</td>\n<td>Patient.birthDate</td>\n</tr>\n<tr>\n<td>US Core Birth Sex Extension</td>\n<td>Patient.extension (<a href=\"http://hl7.org/fhir/us/core/StructureDefinition/us-core-birthsex\">US Core Birth Sex Extension</a>)</td>\n</tr>\n<tr>\n<td>US Core Race Extension</td>\n<td>Patient.extension (<a href=\"http://hl7.org/fhir/us/core/StructureDefinition/us-core-race\">US Core Race Extension</a>)</td>\n</tr>\n<tr>\n<td>US Core Extension Ethnicity</td>\n<td>Patient.extension (<a href=\"http://hl7.org/fhir/us/core/StructureDefinition/us-core-ethnicity\">US Core Ethnicity Extension</a>)</td>\n</tr>\n<tr>\n<td>Preferred Language</td>\n<td>Patient.communication</td>\n</tr>\n<tr>\n<td>Address</td>\n<td>Patient.address</td>\n</tr>\n<tr>\n<td>Phone Number</td>\n<td>Patient.telecom</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"10204543-ec37-4203-9416-c72148d8514e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Practitioner","item":[{"name":"/Practitioner","id":"2bee65d1-082d-4854-9746-fc953f33e2d7","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Practitioner","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Practitioner"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"d7d02de2-1c07-4110-ab32-113214ce18f1","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Practitioner"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/Practitioner/987fcdeb-51a2-43d7-b789-123456789abc\",\n            \"resource\": {\n                \"active\": false,\n                \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/123e4567-e89b-12d3-a456-426614174000\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"22169\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-30T11:29:38.062220+00:00\",\n                    \"versionId\": \"MTc2OTc3MjU3ODA2MjIyMDAwMA\"\n                },\n                \"name\": [\n                    {\n                        \"family\": \"H\",\n                        \"given\": [\"Jack M\"],\n                        \"use\": \"official\"\n                    }\n                ],\n                \"resourceType\": \"Practitioner\",\n                \"telecom\": [\n                    {\n                        \"system\": \"email\",\n                        \"use\": \"work\",\n                        \"value\": \"fake@footholdtechnology.com\"\n                    }\n                ]\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/Practitioner/\"\n        },\n        {\n            \"relation\": \"next\",\n            \"url\": \"https://example.com/fhir/Practitioner/\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/Practitioner/\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/Practitioner/\"\n        }\n    ]\n}\n"},{"id":"a3ea6193-6aa2-40eb-b809-95be09eda6e6","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Practitioner"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"a805bb30-26d3-47bb-875c-977dca815e3f","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":"/Practitioner"},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Practitioner' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"2bee65d1-082d-4854-9746-fc953f33e2d7"},{"name":"/Practitioner/:id","id":"2aff4ce5-f13f-4816-982d-a5a235bd0102","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Practitioner/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Practitioner",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"761f1cf4-f182-4615-bf53-ad628f6e4a16","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Practitioner/:id","host":[""],"path":["Practitioner",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"active\": false,\n    \"id\": \"987fcdeb-51a2-43d7-b789-123456789abc\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/123e4567-e89b-12d3-a456-426614174000\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"22169\"\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-01-30T11:29:38.062220+00:00\",\n        \"versionId\": \"MTc2OTc3MjU3ODA2MjIyMDAwMA\"\n    },\n    \"name\": [\n        {\n            \"family\": \"H\",\n            \"given\": [\"Jack M\"],\n            \"use\": \"official\"\n        }\n    ],\n    \"resourceType\": \"Practitioner\",\n    \"telecom\": [\n        {\n            \"system\": \"email\",\n            \"use\": \"work\",\n            \"value\": \"fake@footholdtechnology.com\"\n        }\n    ]\n}\n"},{"id":"d6ec3840-ee0d-4209-9175-eed2c1cde8b9","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Practitioner/:id","host":[""],"path":["Practitioner",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"02f9ee00-9785-4021-85da-7d51707d4859","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Practitioner/:id","host":[""],"path":["Practitioner",":id"],"variable":[{"key":"id","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Practitioner' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"2aff4ce5-f13f-4816-982d-a5a235bd0102"}],"id":"9042356b-11c6-4095-9fdf-beef9d9723aa","description":"<p>A person who is directly or indirectly involved in the provisioning of healthcare.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-practitioner.html\">US Core Practitioner Profile</a></li>\n</ul>\n","_postman_id":"9042356b-11c6-4095-9fdf-beef9d9723aa","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Procedure","item":[{"name":"/Procedure","id":"b255b506-e1a7-4a34-8b07-f408389f9061","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Procedure?_revinclude=&patient=&date=","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Procedure"],"host":[""],"query":[{"description":{"content":"<p>Other resources to include in the search results when they refer to search matches</p>\n","type":"text/plain"},"key":"_revinclude","value":""},{"description":{"content":"<p>Search by subject - a patient</p>\n","type":"text/plain"},"key":"patient","value":""},{"description":{"content":"<p>When the procedure was performed</p>\n","type":"text/plain"},"key":"date","value":""}],"variable":[]}},"response":[{"id":"d064411b-6f0c-45df-86f1-268d7c706abd","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Procedure?patient=987fcdeb-51a2-43d7-b789-123456789abc&date=gt2021-08-30T15:22:00+00:00","host":[""],"path":["Procedure"],"query":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"},{"key":"date","value":"gt2021-08-30T15:22:00+00:00"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/demodb/Procedure/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"basedOn\": [\n                    {\n                        \"display\": \"195\",\n                        \"reference\": \"ServiceRequest/789abcde-f012-3456-7890-abcdef123456\",\n                        \"type\": \"ServiceRequest\"\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"117747006\",\n                            \"display\": \"HIV-1 antigen screen\",\n                            \"system\": \"http://snomed.info/sct\"\n                        }\n                    ]\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"195\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-22T09:33:03.790368+00:00\",\n                    \"versionId\": \"MTc2OTA3NDM4Mzc5MDM2ODAwMA\"\n                },\n                \"performedPeriod\": {\n                    \"end\": \"2021-08-31T17:25:00.000Z\",\n                    \"start\": \"2021-08-31T15:22:00.000Z\"\n                },\n                \"recorder\": {\n                    \"display\": \"200333001\",\n                    \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Practitioner\"\n                },\n                \"resourceType\": \"Procedure\",\n                \"status\": \"completed\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        }\n    ]\n}\n"},{"id":"f3b482b0-2f0a-4ecd-a7e5-1e41d5bc5618","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Procedure?patient=987fcdeb-51a2-43d7-b789-123456789abc&date=gt2021-08-30T15:22:00+00:00","host":[""],"path":["Procedure"],"query":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"},{"key":"date","value":"gt2021-08-30T15:22:00+00:00"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"490e391a-dcb4-4053-b605-11c352c5936b","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Procedure?patient=987fcdeb-51a2-43d7-b789-123456789abc&date=gt2021-08-30T15:22:00+00:00","host":[""],"path":["Procedure"],"query":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"},{"key":"date","value":"gt2021-08-30T15:22:00+00:00"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Procedure' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"b255b506-e1a7-4a34-8b07-f408389f9061"},{"name":"/Procedure/:id","id":"b6960d9c-4eba-407e-953e-3b4822302744","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Procedure/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Procedure",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"304080d6-f104-46ea-90de-db15c87aaad6","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Procedure/:id","host":[""],"path":["Procedure",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"basedOn\": [\n        {\n            \"display\": \"195\",\n            \"reference\": \"ServiceRequest/789abcde-f012-3456-7890-abcdef123456\",\n            \"type\": \"ServiceRequest\"\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"code\": \"117747006\",\n                \"display\": \"HIV-1 antigen screen\",\n                \"system\": \"http://snomed.info/sct\"\n            }\n        ]\n    },\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"195\"\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-01-22T09:33:03.790368+00:00\",\n        \"versionId\": \"MTc2OTA3NDM4Mzc5MDM2ODAwMA\"\n    },\n    \"performedPeriod\": {\n        \"end\": \"2021-08-31T17:25:00.000Z\",\n        \"start\": \"2021-08-31T15:22:00.000Z\"\n    },\n    \"recorder\": {\n        \"display\": \"200333001\",\n        \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n        \"type\": \"Practitioner\"\n    },\n    \"resourceType\": \"Procedure\",\n    \"status\": \"completed\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n        \"type\": \"Patient\"\n    }\n}\n"},{"id":"a507bb64-702b-4788-af9f-133c3e1fd199","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Procedure/:id","host":[""],"path":["Procedure",":id"],"variable":[{"key":"id","value":"1865634","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"8d19b1f6-6a26-4b1d-9304-d24dcd987914","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Procedure/:id","host":[""],"path":["Procedure",":id"],"variable":[{"key":"id","value":"1865634","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Procedure' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"b6960d9c-4eba-407e-953e-3b4822302744"},{"name":"Procedures Search using POST","id":"dc92d0e5-8407-4c83-a834-73d4e822faba","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>(Required) Search by subject - a patient. Important! The data form of the Request body must be like (example): patient=1107677</p>\n"},{"key":"date","value":"","description":"<p>When the procedure was performed</p>\n","type":"text","uuid":"03ef66bf-195a-433a-99d2-1da2b357b250"}]},"url":"/Procedure/_search","description":"<p>This interaction searches a set of Procedures based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/procedure.html\">FHIR documentation for Procedure.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Procedure","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"51b4718a-7d02-4556-9cd5-04ee8630a419","name":"Procedure bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) Search by subject - a patient. Important! The data form of the Request body must be like (example): patient=1107677"},{"key":"date","value":"gt2021-08-30T15:22:00+00:00","type":"text","uuid":"9e142075-aae0-481e-876c-875450e107d5"}]},"url":"/Procedure/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/demodb/Procedure/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"basedOn\": [\n                    {\n                        \"display\": \"195\",\n                        \"reference\": \"ServiceRequest/789abcde-f012-3456-7890-abcdef123456\",\n                        \"type\": \"ServiceRequest\"\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"117747006\",\n                            \"display\": \"HIV-1 antigen screen\",\n                            \"system\": \"http://snomed.info/sct\"\n                        }\n                    ]\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"195\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-22T09:33:03.790368+00:00\",\n                    \"versionId\": \"MTc2OTA3NDM4Mzc5MDM2ODAwMA\"\n                },\n                \"performedPeriod\": {\n                    \"end\": \"2021-08-31T17:25:00.000Z\",\n                    \"start\": \"2021-08-31T15:22:00.000Z\"\n                },\n                \"recorder\": {\n                    \"display\": \"200333001\",\n                    \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Practitioner\"\n                },\n                \"resourceType\": \"Procedure\",\n                \"status\": \"completed\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        }\n    ]\n}\n"},{"id":"91d22d51-d9b6-44a3-8461-468f31b8d0bb","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) Search by subject - a patient. Important! The data form of the Request body must be like (example): patient=1107677"},{"key":"date","value":"gt2021-08-30T15:22:00+00:00","type":"text","uuid":"c4862c82-9bf4-40e8-becf-dfc47082549a"}]},"url":"/Procedure/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"91da917c-00dc-4008-b6a7-aa1c0062215f","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc","description":"(Required) Search by subject - a patient. Important! The data form of the Request body must be like (example): patient=1107677"},{"key":"date","value":"gt2021-08-30T15:22:00+00:00","type":"text","uuid":"75963945-5f14-4eeb-aca7-59397861a29a"}]},"url":"/Procedure/_search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Procedure' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"dc92d0e5-8407-4c83-a834-73d4e822faba"}],"id":"ac638e19-90db-4f10-93eb-292ad2ce38aa","description":"<p>An action that is or was performed on or for a patient. This can be a physical intervention like an operation, or less invasive like long term services, counseling, or hypnotherapy.</p>\n<p><strong>The following profiles are supported</strong>:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU3.1.1/StructureDefinition-us-core-implantable-device.html\"></a><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-procedure.html\">US Core Procedure Profile</a></li>\n</ul>\n","_postman_id":"ac638e19-90db-4f10-93eb-292ad2ce38aa","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Provenance","item":[{"name":"/Provenance/:id","id":"f1c189b3-ffda-40a1-9948-319a3da82aee","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/Provenance/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["Provenance",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) </p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"ebe2c7aa-d832-42b2-abb4-e91a2121e767","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Provenance/:id","host":[""],"path":["Provenance",":id"],"variable":[{"key":"id","value":"17767011","description":"(Required) "}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n  \"agent\": [\n    {\n      \"id\": \"ut nisi dolore\",\n      \"type\": {\n        \"coding\": [\n          {\n            \"code\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            },\n            \"system\": {\n              \"value\": \"<Error: Too many levels of nesting to fake this schema>\"\n            }\n          }\n        ]\n      },\n      \"who\": {\n        \"reference\": \"in\"\n      }\n    }\n  ],\n  \"entity\": [\n    {\n      \"role\": \"do pariatur velit labore Duis\",\n      \"what\": {\n        \"display\": \"veniam ut Excepteur sint\",\n        \"reference\": \"eu aute\"\n      }\n    }\n  ],\n  \"id\": \"laborum sint dolor quis\",\n  \"location\": {\n    \"reference\": \"labore\"\n  },\n  \"meta\": {\n    \"tag\": [\n      {\n        \"code\": \"fugiat eiusmod\",\n        \"display\": \"dolore cillum ut velit\",\n        \"system\": \"sit reprehenderit amet sunt\"\n      }\n    ]\n  },\n  \"occurredPeriod\": {\n    \"end\": \"consequat\",\n    \"start\": \"et commodo do aliqua\"\n  },\n  \"policy\": [],\n  \"reason\": [\n    {\n      \"coding\": [\n        {\n          \"code\": \"in officia esse non irure\",\n          \"display\": \"cupidatat Ut laborum \",\n          \"system\": \"commodo occaecat adipisicing culpa\"\n        }\n      ]\n    }\n  ],\n  \"recorded\": \"aliquip fugiat enim n\",\n  \"resourceType\": \"sin\",\n  \"target\": [\n    {\n      \"reference\": \"esse\"\n    }\n  ],\n  \"text\": {\n    \"div\": \"voluptate non\",\n    \"status\": \"irure amet\"\n  }\n}"},{"id":"fcec2b6d-9525-408e-9620-1bb998446200","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Provenance/:id","host":[""],"path":["Provenance",":id"],"variable":[{"key":"id","value":"17767011","description":"(Required) "}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"fe72b70e-e06d-4f11-a081-803c15c2c39c","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Provenance/:id","host":[""],"path":["Provenance",":id"],"variable":[{"key":"id","value":"17767011","description":"(Required) "}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Provenance' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"f1c189b3-ffda-40a1-9948-319a3da82aee"}],"id":"e420097e-7a99-472c-a5af-32eb28832ed4","description":"<p>Provenance of a resource is a record that describes entities and processes involved in producing and delivering or otherwise influencing that resource. Provenance provides a critical foundation for assessing authenticity, enabling trust, and allowing reproducibility. Provenance assertions are a form of contextual metadata and can themselves become important records with their own provenance. Provenance statement indicates clinical significance in terms of confidence in authenticity, reliability, and trustworthiness, integrity, and stage in lifecycle (e.g. Document Completion - has the artifact been legally authenticated), all of which may impact security, privacy, and trust policies.</p>\n<p><strong>The following profiles are supported:</strong></p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-provenance.html\">US Core Provenance Profile</a></li>\n</ul>\n<div class=\"click-to-expand-wrapper is-table-wrapper\"><table>\n<thead>\n<tr>\n<th><strong>US Core Data Element</strong></th>\n<th><strong>FHIR Resource Data</strong></th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>Author Time Stamp</td>\n<td>Provenance.recorded</td>\n</tr>\n</tbody>\n</table>\n</div>","_postman_id":"e420097e-7a99-472c-a5af-32eb28832ed4","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Related Person","item":[{"name":"/RelatedPerson/:id","id":"4637fa05-ed57-46d8-ad81-b0369287e443","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/RelatedPerson/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["RelatedPerson",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"2dac1e76-3d93-48cc-882a-6707a78523df","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/RelatedPerson/:id","host":[""],"path":["RelatedPerson",":id"],"variable":[{"key":"id","value":"456e7890-f12b-34c5-d678-901234567def","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"fullUrl\": \"https://example.com/fhir/RelatedPerson/456e7890-f12b-34c5-d678-901234567def\",\n    \"resource\": {\n        \"active\": true,\n        \"address\": [\n            {\n                \"city\": \"Los Angeles\",\n                \"line\": [\"test address 1\"],\n                \"state\": \"IL\"\n            }\n        ],\n        \"id\": \"456e7890-f12b-34c5-d678-901234567def\",\n        \"identifier\": [\n            {\n                \"assigner\": {\n                    \"display\": \"Foothold Technology\",\n                    \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Organization\"\n                },\n                \"system\": \"https://footholdtechnology.com/awards\",\n                \"use\": \"official\",\n                \"value\": \"704\"\n            }\n        ],\n        \"meta\": {\n            \"lastUpdated\": \"2026-01-08T04:26:12.081928+00:00\",\n            \"versionId\": \"MTc2Nzg0NjM3MjA4MTkyODAwMA\"\n        },\n        \"name\": [\n            {\n                \"family\": \"Simpson\",\n                \"given\": [\"Adeltest\"],\n                \"use\": \"official\"\n            }\n        ],\n        \"patient\": {\n            \"display\": \"100128101\",\n            \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n            \"type\": \"Patient\"\n        },\n        \"relationship\": [\n            {\n                \"coding\": [\n                    {\n                        \"code\": \"O\",\n                        \"display\": \"Other\",\n                        \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0131\"\n                    }\n                ],\n                \"text\": \"Other\"\n            }\n        ],\n        \"resourceType\": \"RelatedPerson\",\n        \"telecom\": [\n            {\n                \"system\": \"email\",\n                \"use\": \"home\",\n                \"value\": \"cekulena@mailinator.com\"\n            }\n        ]\n    },\n    \"search\": {\n        \"mode\": \"match\"\n    }\n}\n"},{"id":"698043b5-07c9-4c8c-b341-06f95c75bf3b","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/RelatedPerson/:id","host":[""],"path":["RelatedPerson",":id"],"variable":[{"key":"id","value":"456e7890-f12b-34c5-d678-901234567def","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"cba06445-a9d4-408b-9e32-520098bb2783","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/RelatedPerson/:id","host":[""],"path":["RelatedPerson",":id"],"variable":[{"key":"id","value":"456e7890-f12b-34c5-d678-901234567def","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'RelatedPerson' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"4637fa05-ed57-46d8-ad81-b0369287e443"}],"id":"945d8a60-60f6-4ea0-a3ee-f917b34a878e","description":"<p>Information about a person that is involved in the care for a patient, but who is not the target of healthcare, nor has a formal responsibility in the care process. Includes family members, friends, and caregivers.</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-relatedperson.html\">US Core RelatedPerson Profile</a></li>\n</ul>\n","_postman_id":"945d8a60-60f6-4ea0-a3ee-f917b34a878e","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Service Request","item":[{"name":"/ServiceRequest","id":"5a3cdd57-5000-420f-ad2e-ebd4f7467f70","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/ServiceRequest?patient&category&authored&code","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["ServiceRequest"],"host":[""],"query":[{"description":{"content":"<p>Patient the service is ordered for</p>\n","type":"text/plain"},"key":"patient","value":null},{"description":{"content":"<p>Classification of service</p>\n","type":"text/plain"},"key":"category","value":null},{"description":{"content":"<p>Date request signed</p>\n","type":"text/plain"},"key":"authored","value":null},{"description":{"content":"<p>What is being requested/ordered</p>\n","type":"text/plain"},"key":"code","value":null}],"variable":[]}},"response":[{"id":"8c16b473-7b6b-498f-b0f1-b8811d2a03c7","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/ServiceRequest?patient=789abcde-f012-3456-7890-abcdef123456&category=108252007&authored=2021-06-30T12:50:19-04:00&code=unknown","host":[""],"path":["ServiceRequest"],"query":[{"key":"patient","value":"789abcde-f012-3456-7890-abcdef123456"},{"key":"category","value":"108252007"},{"key":"authored","value":"2021-06-30T12:50:19-04:00"},{"key":"code","value":"unknown"}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 206,\n    \"entry\": [\n      {\n        \"fullUrl\": \"https://example.com/fhir/ServiceRequest/123e4567-e89b-12d3-a456-426614174000\",\n        \"resource\": {\n          \"authoredOn\": \"2021-10-13T00:00:00-04:00\",\n          \"category\": [\n            {\n              \"coding\": [\n                {\n                  \"code\": \"108252007\",\n                  \"display\": \"Laboratory procedure\",\n                  \"system\": \"http://snomed.info/sct\"\n                }\n              ]\n            }\n          ],\n          \"code\": {\n            \"coding\": [\n              {\n                \"code\": \"unknown\",\n                \"display\": \"Unknown\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n              }\n            ]\n          },\n          \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n          \"identifier\": [\n            {\n              \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"type\": \"Organization\"\n              },\n              \"system\": \"https://footholdtechnology.com/awards\",\n              \"use\": \"official\",\n              \"value\": \"509\"\n            }\n          ],\n          \"intent\": \"order\",\n          \"meta\": {\n            \"lastUpdated\": \"2026-01-30T07:49:40.139854+00:00\",\n            \"versionId\": \"MTc2OTc1OTM4MDEzOTg1NDAwMA\"\n          },\n          \"reasonCode\": [\n            {\n              \"text\": \"Testing\"\n            }\n          ],\n          \"requester\": {\n            \"display\": \"200427001\",\n            \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n            \"type\": \"Practitioner\"\n          },\n          \"resourceType\": \"ServiceRequest\",\n          \"status\": \"active\",\n          \"subject\": {\n            \"display\": \"100128101\",\n            \"reference\": \"Patient/789abcde-f012-3456-7890-abcdef123456\",\n            \"type\": \"Patient\"\n          }\n        },\n        \"search\": {\n          \"mode\": \"match\"\n        }\n      }\n    ],\n    \"link\": [\n      {\n        \"relation\": \"search\",\n        \"url\": \"https://example.com/fhir/ServiceRequest/\"\n      },\n      {\n        \"relation\": \"next\",\n        \"url\": \"https://example.com/fhir/ServiceRequest/\"\n      },\n      {\n        \"relation\": \"first\",\n        \"url\": \"https://example.com/fhir/ServiceRequest/\"\n      },\n      {\n        \"relation\": \"self\",\n        \"url\": \"https://example.com/fhir/ServiceRequest/\"\n      }\n    ]\n  }"},{"id":"51ab9df5-90fe-42e7-ba61-70528a8c6fd0","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/ServiceRequest?patient=789abcde-f012-3456-7890-abcdef123456","host":[""],"path":["ServiceRequest"],"query":[{"key":"patient","value":"789abcde-f012-3456-7890-abcdef123456"}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"ff9ecbf9-ff04-46c9-9368-bd8cac284a3e","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/ServiceRequest?patient=789abcde-f012-3456-7890-abcdef123456","host":[""],"path":["ServiceRequest"],"query":[{"key":"patient","value":"789abcde-f012-3456-7890-abcdef123456"}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'ServiceRequest' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"5a3cdd57-5000-420f-ad2e-ebd4f7467f70"},{"name":"/ServiceRequest/:id","id":"b97bbcc3-122d-408c-9b12-11c1640b0f74","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/ServiceRequest/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["ServiceRequest",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"1bca56e2-919b-4840-bc0b-e2cdca3359e3","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/ServiceRequest/:id","host":[""],"path":["ServiceRequest",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"authoredOn\": \"2021-10-13T00:00:00-04:00\",\n    \"category\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"108252007\",\n                    \"display\": \"Laboratory procedure\",\n                    \"system\": \"http://snomed.info/sct\"\n                }\n            ]\n        }\n    ],\n    \"code\": {\n        \"coding\": [\n            {\n                \"code\": \"unknown\",\n                \"display\": \"Unknown\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/data-absent-reason\"\n            }\n        ]\n    },\n    \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"509\"\n        }\n    ],\n    \"intent\": \"order\",\n    \"meta\": {\n        \"lastUpdated\": \"2026-01-30T07:49:40.139854+00:00\",\n        \"versionId\": \"MTc2OTc1OTM4MDEzOTg1NDAwMA\"\n    },\n    \"reasonCode\": [\n        {\n            \"text\": \"Testing\"\n        }\n    ],\n    \"requester\": {\n        \"display\": \"200427001\",\n        \"reference\": \"Practitioner/456e7890-f12b-34c5-d678-901234567def\",\n        \"type\": \"Practitioner\"\n    },\n    \"resourceType\": \"ServiceRequest\",\n    \"status\": \"active\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/789abcde-f012-3456-7890-abcdef123456\",\n        \"type\": \"Patient\"\n    }\n}\n"},{"id":"d7df9902-9fe8-484d-8d14-1ba010562e17","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/ServiceRequest/:id","host":[""],"path":["ServiceRequest",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"fa8eaa67-4ca4-465b-bec5-0bceea89bdef","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/ServiceRequest/:id","host":[""],"path":["ServiceRequest",":id"],"variable":[{"key":"id","value":"123e4567-e89b-12d3-a456-426614174000","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'ServiceRequest' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"b97bbcc3-122d-408c-9b12-11c1640b0f74"},{"name":"ServiceRequest Search using POST","id":"f1a0ce66-e49c-47a4-a5ac-e9ec2bf4ec86","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"POST","header":[{"key":"Content-Type","value":"application/x-www-form-urlencoded"},{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"","description":"<p>Patient the service is ordered for</p>\n"},{"key":"category","value":"","description":"<p>Classification of service</p>\n","type":"text","uuid":"03ef66bf-195a-433a-99d2-1da2b357b250"},{"key":"authored","value":"","description":"<p>Date request signed</p>\n","type":"text","uuid":"a6f8f261-9d2b-4370-8954-b3aa7ccf7eda"},{"key":"code","value":"","description":"<p>What is being requested/ordered</p>\n","type":"text","uuid":"873dc4b6-e787-48a7-8b1a-84d34fa717fe"}]},"url":"/ServiceRequest/_search","description":"<p>This interaction searches a set of Procedures based on some filter criteria. Search interactions take a series of parameters of name'='value pairs encoded as an application/x-www-form-urlencoded submission for a POST.</p><p><a href=\"https://www.hl7.org/fhir/procedure.html\">FHIR documentation for Procedure.</a></p><p></p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["ServiceRequest","_search"],"host":[""],"query":[],"variable":[]}},"response":[{"id":"94c905f4-1d6c-4247-b9ba-73529121b94e","name":"ServiceRequest bundle","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"789abcde-f012-3456-7890-abcdef123456"},{"key":"authored","value":"2021-06-30T12:50:19-04:00","type":"text","uuid":"9e142075-aae0-481e-876c-875450e107d5"},{"key":"category","value":"108252007","type":"text","uuid":"4d36c490-6950-42b5-8597-00c87cbbd44d"},{"key":"code","value":"unknown","type":"text","uuid":"b52cf4b6-9f07-4a87-ab30-08b74395d935"}]},"url":"/ServiceRequest/_search"},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"resourceType\": \"Bundle\",\n    \"type\": \"searchset\",\n    \"total\": 1,\n    \"entry\": [\n        {\n            \"fullUrl\": \"https://example.com/fhir/demodb/Procedure/123e4567-e89b-12d3-a456-426614174000\",\n            \"resource\": {\n                \"basedOn\": [\n                    {\n                        \"display\": \"195\",\n                        \"reference\": \"ServiceRequest/789abcde-f012-3456-7890-abcdef123456\",\n                        \"type\": \"ServiceRequest\"\n                    }\n                ],\n                \"code\": {\n                    \"coding\": [\n                        {\n                            \"code\": \"117747006\",\n                            \"display\": \"HIV-1 antigen screen\",\n                            \"system\": \"http://snomed.info/sct\"\n                        }\n                    ]\n                },\n                \"id\": \"123e4567-e89b-12d3-a456-426614174000\",\n                \"identifier\": [\n                    {\n                        \"assigner\": {\n                            \"display\": \"Foothold Technology\",\n                            \"reference\": \"Organization/456e7890-f12b-34c5-d678-901234567def\",\n                            \"type\": \"Organization\"\n                        },\n                        \"system\": \"https://footholdtechnology.com/awards\",\n                        \"use\": \"official\",\n                        \"value\": \"195\"\n                    }\n                ],\n                \"meta\": {\n                    \"lastUpdated\": \"2026-01-22T09:33:03.790368+00:00\",\n                    \"versionId\": \"MTc2OTA3NDM4Mzc5MDM2ODAwMA\"\n                },\n                \"performedPeriod\": {\n                    \"end\": \"2021-08-31T17:25:00.000Z\",\n                    \"start\": \"2021-08-31T15:22:00.000Z\"\n                },\n                \"recorder\": {\n                    \"display\": \"200333001\",\n                    \"reference\": \"Practitioner/fedcba98-7654-3210-fedc-ba9876543210\",\n                    \"type\": \"Practitioner\"\n                },\n                \"resourceType\": \"Procedure\",\n                \"status\": \"completed\",\n                \"subject\": {\n                    \"display\": \"100128101\",\n                    \"reference\": \"Patient/987fcdeb-51a2-43d7-b789-123456789abc\",\n                    \"type\": \"Patient\"\n                }\n            },\n            \"search\": {\n                \"mode\": \"match\"\n            }\n        }\n    ],\n    \"link\": [\n        {\n            \"relation\": \"search\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"first\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        },\n        {\n            \"relation\": \"self\",\n            \"url\": \"https://example.com/fhir/demodb/Procedure/?date=gt2021-08-30T15%3A22%3A00%2B00%3A00&patient=987fcdeb-51a2-43d7-b789-123456789abc\"\n        }\n    ]\n}\n"},{"id":"fa338e29-2093-43c6-bc0b-a1648180ad56","name":"Unauthorized","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"},{"key":"authored","value":"gt2021-08-30T15:22:00+00:00","type":"text","uuid":"c4862c82-9bf4-40e8-becf-dfc47082549a"}]},"url":"/ServiceRequest/_search"},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"d21e9d23-f211-42ce-b4d4-f47d239ae510","name":"Forbidden","originalRequest":{"method":"POST","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"body":{"mode":"urlencoded","urlencoded":[{"key":"patient","value":"987fcdeb-51a2-43d7-b789-123456789abc"},{"key":"authored","value":"gt2021-08-30T15:22:00+00:00","type":"text","uuid":"75963945-5f14-4eeb-aca7-59397861a29a"}]},"url":"/ServiceRequest/_search"},"status":"Internal Server Error","code":500,"_postman_previewlanguage":"text","header":[{"key":"Content-Type","value":"text/plain"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Procedure' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"f1a0ce66-e49c-47a4-a5ac-e9ec2bf4ec86"}],"id":"8f7bfae2-9cfe-48fb-99f2-c95a91057221","description":"<p>A record of a request for a procedure or diagnostic or other service to be planned, proposed, or performed with or on a patient.</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-servicerequest.html\">US Core ServiceRequest Profile</a></li>\n</ul>\n","_postman_id":"8f7bfae2-9cfe-48fb-99f2-c95a91057221","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}},{"name":"Specimen","item":[{"name":"/Specimen/:id","id":"13a33976-8901-467e-bc3f-7374968bbd04","protocolProfileBehavior":{"disableBodyPruning":true},"request":{"method":"GET","header":[{"key":"Accept","value":"application/fhir+json;charset=utf-8"}],"url":"/ServiceRequest/:id","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}},"urlObject":{"path":["ServiceRequest",":id"],"host":[""],"query":[],"variable":[{"description":{"content":"<p>(Required) The logical resource id associated with the Resource.</p>\n","type":"text/plain"},"type":"any","value":"","key":"id"}]}},"response":[{"id":"300e1e4b-0314-4b83-b707-6908415ac523","name":"Success","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Specimen/:id","host":[""],"path":["Specimen",":id"],"variable":[{"key":"id","value":"456e7890-f12b-34c5-d678-901234567def","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"OK","code":200,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/fhir+json;charset=utf-8"}],"cookie":[],"responseTime":null,"body":"{\n    \"collection\": {\n        \"collectedDateTime\": \"2026-01-19T14:42:00-05:00\",\n        \"collector\": {\n            \"display\": \"202441\",\n            \"reference\": \"Practitioner/789abcde-f012-3456-7890-abcdef123456\",\n            \"type\": \"Practitioner\"\n        }\n    },\n    \"condition\": [\n        {\n            \"coding\": [\n                {\n                    \"code\": \"AUT\",\n                    \"display\": \"Autolyzed\",\n                    \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0493\"\n                }\n            ],\n            \"text\": \"Autolyzed\"\n        }\n    ],\n    \"id\": \"456e7890-f12b-34c5-d678-901234567def\",\n    \"identifier\": [\n        {\n            \"assigner\": {\n                \"display\": \"Foothold Technology\",\n                \"reference\": \"Organization/987fcdeb-51a2-43d7-b789-123456789abc\",\n                \"type\": \"Organization\"\n            },\n            \"system\": \"https://footholdtechnology.com/awards\",\n            \"use\": \"official\",\n            \"value\": \"785\"\n        }\n    ],\n    \"meta\": {\n        \"lastUpdated\": \"2026-01-22T03:11:44.500578+00:00\",\n        \"versionId\": \"MTc2OTA1MTUwNDUwMDU3ODAwMA\"\n    },\n    \"resourceType\": \"Specimen\",\n    \"status\": \"available\",\n    \"subject\": {\n        \"display\": \"100128101\",\n        \"reference\": \"Patient/123e4567-e89b-12d3-a456-426614174000\",\n        \"type\": \"Patient\"\n    },\n    \"type\": {\n        \"coding\": [\n            {\n                \"code\": \"ABS\",\n                \"display\": \"Abscess\",\n                \"system\": \"http://terminology.hl7.org/CodeSystem/v2-0070\"\n            }\n        ],\n        \"text\": \"Abscess\"\n    }\n}\n"},{"id":"326053ff-9825-494d-bf74-51e0eb8541e3","name":"Unauthorized","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Specimen/:id","host":[""],"path":["Specimen",":id"],"variable":[{"key":"id","value":"1865630","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Unauthorized","code":401,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"Unauthorized - #5"},{"id":"9785d652-0665-4c25-9bca-da76f02f661d","name":"Forbidden","originalRequest":{"method":"GET","header":[{"key":"Authorization","value":"Bearer <token>","description":"Added as a part of security scheme: bearer"}],"url":{"raw":"/Specimen/:id","host":[""],"path":["Specimen",":id"],"variable":[{"key":"id","value":"1865630","description":"(Required) The logical resource id associated with the Resource."}]}},"status":"Forbidden","code":403,"_postman_previewlanguage":"json","header":[{"key":"Content-Type","value":"application/json"}],"cookie":[],"responseTime":null,"body":"{\n  \"resourceType\": \"OperationOutcome\",\n  \"issue\": [\n    {\n      \"severity\": \"error\",\n      \"code\": \"forbidden\",\n      \"diagnostics\": \"Access to resource type 'Specimen' is not authorized by token scopes\"\n    }\n  ]\n}"}],"_postman_id":"13a33976-8901-467e-bc3f-7374968bbd04"}],"id":"585f3768-f588-4d4a-805e-03ebbb2c71ec","description":"<p>A sample to be used for analysis. Includes information about the specimen collection, type, and condition.</p>\n<p>The following profiles are supported:</p>\n<ul>\n<li><a href=\"https://hl7.org/fhir/us/core/STU6.1/StructureDefinition-us-core-specimen.html\">US Core Specimen Profile</a></li>\n</ul>\n","_postman_id":"585f3768-f588-4d4a-805e-03ebbb2c71ec","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":true,"source":{"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","name":"FHIR Resources","type":"folder"}}}],"id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a","description":"<p>This folder contains endpoints for accessing various FHIR resources. Each subfolder focuses on a specific resource type, providing detailed requests to retrieve healthcare data according to the FHIR specification.</p>\n<h4 id=\"usage\">Usage:</h4>\n<p>Each subfolder within \"FHIR Resources\" includes detailed endpoints for interacting with the respective FHIR resource. These endpoints are designed to comply with the FHIR specification, ensuring compatibility and interoperability with other FHIR-compliant systems.</p>\n","auth":{"type":"bearer","bearer":{"basicConfig":[{"key":"token","value":""}]},"isInherited":false},"event":[{"listen":"prerequest","script":{"id":"71be77c1-32b2-41ad-aa90-1c48741982ae","type":"text/javascript","packages":{},"requests":{},"exec":[""]}},{"listen":"test","script":{"id":"876ee746-41de-4d0c-991c-ef541235d3ba","type":"text/javascript","packages":{},"requests":{},"exec":[""]}}],"_postman_id":"51996aaf-ab15-4aa8-b0c2-f3ef7aef277a"}],"auth":{"type":"oauth2","oauth2":{"basicConfig":[],"advancedConfig":[{"key":"useBrowser","value":"<use-browser>"},{"key":"accessTokenUrl","value":"<access-token-url>"},{"key":"authUrl","value":"<auth-url>"},{"key":"clientSecret","value":""},{"key":"clientId","value":""}]}},"event":[{"listen":"prerequest","script":{"id":"3afafbe3-e656-4873-a527-8ca36cbf86cd","type":"text/javascript","requests":{},"exec":[""]}},{"listen":"test","script":{"id":"5eb1770c-f335-4ede-af01-364d6cd7de77","type":"text/javascript","requests":{},"exec":[""]}}],"variable":[{"key":"Client Secret","value":""},{"key":"Client ID","value":""},{"key":"access_token","value":""},{"key":"baseUrl","value":""}]}