Koppeltaal 2.0 Dev Guide
  • Developer Guide
  • POC (Walking Skeleton)
    • Proof Of Concept
      • Koppeltaal Server
      • Domain Management
      • Auth Server
      • Koppeltaal IdP
      • Domain Access Test Suite
      • Koppeltaal Test Tooling
  • Domain access
    • Joining a domain
    • Role-based access control
      • Autorisation model
      • Creating a role
      • Search Narrowing
      • Revoke Permission
  • Technical HOW-TO
    • Koppeltaal Test Tooling
    • Request Koppeltaal server metadata
    • Connecting to Koppeltaal
      • Requirements
        • Create a key pair
        • Signing the JWT
        • JWKS setup
      • Access to Koppeltaal
    • Managing resources
      • Versioning
      • CRUD Operations
        • Retrieve all Resources
        • Retrieve specific Resource
        • Create a Resource
        • Update a Resource
        • Delete a Resource
      • Subscribing to changes
    • Launching
      • HTI Flow
      • SHOF Flow
      • Compose a launch
      • Initiating a launch
      • Receiving a HTI launch
        • Token introspection
      • Receiving a SHOF launch
    • Detailed technical guidance
  • Hackathon Use Cases
    • Requirements
      • Install and configure Yivi
    • Use-Cases
      • Use-Case 1: Create a Task
        • Create an ActivityDefinition
      • Use-Case 2: HTI Launch
      • Use-case 3: SHOF Launch
      • Use-case 4: Subscribing to changes
  • Useful Links
    • Simplifier Profiles
    • FHIR Docs
    • HTI documentation
    • GitHub
    • Koppeltaal 2.0 Specifications & Architecture
    • Koppeltaal 2.0 Implementation Guide
    • Koppeltaal 2.0 OpenAPI Specs
Powered by GitBook
On this page
  • Retrieve all Resources
  • Topics

Was this helpful?

  1. Technical HOW-TO
  2. Managing resources
  3. CRUD Operations

Retrieve all Resources

Request all resources for a specific Resource-type

PreviousCRUD OperationsNextRetrieve specific Resource

Last updated 8 months ago

Was this helpful?

See the for more information

Returned results can be filtered by .

Retrieve all Resources

GET https://fhir-server.koppeltaal.headease.nl/fhir/DEFAULT/<Resource>

Get ALL for type .

Path Parameters

Name
Type
Description

Resource*

string

Resource-type (e.g. Patient)

Headers

Name
Type
Description

Authentication*

string

Bearer token obtained from the Auth Server

{
  "resourceType": "Bundle",
  "id": "f0cfec85-0d26-44f9-a222-a478451d4bf9",
  "meta": {
    "lastUpdated": "2023-02-07T08:16:54.158+00:00"
  },
  "type": "searchset",
  "link": [
    {
      "relation": "self",
      "url": "https://fhir-server.koppeltaal.headease.nl/fhir/DEFAULT/Patient"
    },
    {
      "relation": "next",
      "url": "https://fhir-server.koppeltaal.headease.nl/fhir/DEFAULT?_getpages=f0cfec85-0d26-44f9-a222-a478451d4bf9&_getpagesoffset=40&_count=40&_pretty=true&_bundletype=searchset"
    }
  ],
  "entry": [
    {
      "fullUrl": "https://fhir-server.koppeltaal.headease.nl/fhir/DEFAULT/Patient/13befac2-de72-4926-99e8-24d0adb1fd62",
      "resource": {
        "resourceType": "Patient",
        "id": "13befac2-de72-4926-99e8-24d0adb1fd62",
        ...
      },
      "search": {
        "mode": "match"
      }
    },
    {
      "fullUrl": "https://fhir-server.koppeltaal.headease.nl/fhir/DEFAULT/Patient/d20b53b0-5b35-493c-9cbd-40673d5ce22e",
      "resource": {
        "resourceType": "Patient",
        "id": "d20b53b0-5b35-493c-9cbd-40673d5ce22e",
        ...
      },
      "search": {
        "mode": "match"
      }
    }
  ]
}

Unauthenticated

Unauthorized

Topics

(zie )

FHIR documentation
Search Narrowing
TOP-KT-002a - FHIR Resource Service interacties
TOP-KT-005a - Rollen en rechten voor applicatie-instanties
TOP-KT-009 - Overzicht gebruikte FHIR Resources
Connecting to Koppeltaal