You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Organizations are practices defined in RED as user groups. Organizations contain e.g. addresses and contact information for a practice. Organizations can be searched using a search request. Search for organizations will return a bundle including one or more FHIR items of type KBV_PR_AW_Betriebsstaette

SEARCH request for all organizations
{{baseURL}}/{{tenant}}/Organization?page=1

Example: this search requests fetches all organizations defined in RED using paging to limit the number of results.


Data of a specific organization may be fetched using a read request including the identifier of the specific organization. A read request returns one FHIR item of type KBV_PR_AW_Betriebsstaette. A read request for an organization specifies the organization by its organization ID. The organization ID may be fetched by a previous search request.

READ request for a given organization
{{baseURL}}/{{tenant}}/Organization/wK7hhpbEIG1qkSdvRCCd3AEA3W4lBfDB

Example: this read request returns the FHIR item for organization with ID wK7hhpbEIG1qkSdvRCCd3AEA3W4lBfDB. The ID may be retrieved by a search request sent before this request.


Example of FHIR item for an organization
<Organization xmlns="http://hl7.org/fhir">
    <id value="yYJ1iAwyEocr1h2HJM0HWzGeWJMcjJrM"/>
    <meta>
        <versionId value="1"/>
        <lastUpdated value="2022-08-04T09:43:01+00:00"/>
        <profile value="https://fhir.kbv.de/StructureDefinition/KBV_PR_AW_Betriebsstaette|1.2.0"/>
    </meta>
    <text>
        <status value="extensions"/>
        <div xmlns="http://www.w3.org/1999/xhtml">Organisation RED Medical Systems (V1) | ID yYJ1iAwyEocr1h2HJM0HWzGeWJMcjJrMBSNR 478818100 | Adresse Hauptstrasse 180, 56170 Bendorf | Telefon 0171 1014211 | zuletzt bearbeitet 2022-08-04T09:43:01+00:00</div>
    </text>
    <extension url="https://fhir.kbv.de/StructureDefinition/KBV_EX_AW_Betriebsstaette_Hierarchie">
        <valueCode value="BSNR"/>
    </extension>
    <identifier>
        <type>
            <coding>
                <system value="http://terminology.hl7.org/CodeSystem/v2-0203"/>
                <code value="BSNR"/>
            </coding>
        </type>
        <system value="https://fhir.kbv.de/NamingSystem/KBV_NS_Base_BSNR"/>
        <value value="478818100"/>
    </identifier>
    <name value="RED Medical Systems"/>
    <telecom>
        <system value="phone"/>
        <value value="01711014211"/>
    </telecom>
    <telecom>
        <system value="fax"/>
        <value value="0643144672"/>
    </telecom>
    <address>
        <type value="both"/>
        <line value="Hauptstrasse 180">
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-streetName">
                <valueString value="Hauptstrasse"/>
            </extension>
            <extension url="http://hl7.org/fhir/StructureDefinition/iso21090-ADXP-houseNumber">
                <valueString value="180"/>
            </extension>
        </line>
        <city value="Bendorf"/>
        <postalCode value="56170"/>
        <country value="D"/>
    </address>
</Organization>


  • No labels