Organization

An organization is a formal or informal grouping of people or organizations with a common purpose, such as a company, institution, corporation, community group, or healthcare practice.

Get 100 organizations (by default):

GET [base]/fhir/Organization

Get organization by name:

GET [base]/fhir/Organization?name=ACME

Get organizations by address:

GET [base]/fhir/Organization?address=BRONX

Get organization by type:

GET [base]/fhir/Organization?type=HS

Get organization by identifier:

GET [base]/fhir/Organization?identifier=1023024882

Get organizations by address AND type:

GET [base]/fhir/Organization?address=BRONX&type=HS

The full list of FHIR search parameters for Organization is found below. Aidbox also offers a selection of query parameters to further refine search results. This includes pagination, full-text search, sorting etc. Refer to the FHIR API Search docs for information.

The search results are returned in Bundles by default. Alternatively, you can specify a _result parameter with value array to receive resources in a JSON array.

Bulk API

The following bulk operations on Organization are available.

Aidbox will respond with Chunked Transfer Encoding ndjson stream, optionally you can get the output in FHIR format or GZIPped.

This is a memory-efficient operation. Aidbox just streams the database cursor to a socket. If your HTTP Client supports processing of Chunked Encoding, you can process resources in stream one by one without waiting for the end of the response. See full docs here.

GET [base]/Organization/$dump

Dump Organization resources in CSV format.

This operation dumps resource data in Aidbox format as CSV (RFC4180). In this format, columns are paths to JSON values and Rows are values. It includes the header.

Neither the specific order of columns nor the order of rows is guaranteed. See full docs here.

GET [base]/Organization/$dump-csv

Parameters

ParameterDescription

Organization.active

true/false

Organization.address

address

Organization.address-city

city

Organization.address-country

country

Organization.address-postalcode

postal code

Organization.address-state

state

Organization.address-use

use

Organization.boardCertifiedCode

Organization.boardCertifiedValue

Organization.endpoint

technical endpoints providing access to services operated for the organization

Organization.identifier

identifier in a system

Organization.name

organization name

Organization.partof

the organization of which this organization forms a part

Organization.phonetic

Organization.type

type of organization

Last updated