Skip to main content

Payer Services PDex $provider-member-match API Specification

Service Overview

InterSystems Payer Services PDex APIs support the sharing of patient health data and are designed in compliance with the CMS-0057-F regulationsOpens in a new tab. The APIs allow patients to access the health information held by their payer, providers to access clinical data for patients they have a relationship with, and payers to access health data for their members who have multiple or prior health plans.

The $provider-member-match API allows providers to identify multiple patients using demographic and coverage information and receive a Group resource that can be used to obtain patients' clinical data. Single member match requests can be made using the $member-match API.

Refer to the Getting Started section for information on connectivity, authentication and how to get help. To use the REST APIs, you will need to know the server URL of the FHIR server you will be connecting to.

Workflow

A typical workflow involving the $provider-member-match operation used in a Provider Access scenario might be:

  • The provider generates a batch of patients

  • The provider uses the $provider-member-match operation to submit the batch of patients' information to their patients' payer.

  • The provider uses the status method to poll for updates on the original member match request.

  • Once the member match request is complete, the provider can download the NDJSON files containing the group data for matched, non-matched, and consent constrained patients.

  • The provider uses the returned Group ID information for matched patients to invoke the $davinci-data-export operation to retrieve the patients' data from their payer.

Endpoint: $provider-member-match

Base URL

The base URL of the $provider-member-match operation is:

<server url>/csp/healthshare/<namespace>/app/api/responder/FHIRResponderService

where <server url> and <namespace> have been given to you by the payer organization you are connecting with.

Optional Capabilities

None.

Endpoint Prerequisites

In order to use the $provider-member-match operation, the following must be satisfied:

  • The endpoint information must be known.

To successfully find a matching patient's identifier:

  • The patient being searched for must exist in the member identity system of the payer being queried.

  • The provider must have an attributed treatment relationship with the patient.

  • The patient being matched cannot previously have opted out of sharing data with the requesting provider.

Required Header Settings

  • Content-Type: application/fhir+json

  • Accept: application/fhir+json

  • Prefer: respond-async (for the initial bulk request)

Request Methods

POST <base url>/Group/$provider-member-match

Invokes the bulk provider member match operation.

GET <base url>/bulk-member-match/status/<sessionID>

where <sessionId > is the session identifier for the bulk member match you initiated.

You can use this to poll for the status of a bulk member match request.

GET <base url>/bulk-member-match/file/<sessionId>/<fileName>

where <sessionId > is the session identifier for the bulk member match you initiated and <fileName> identifies the NDJSON file you want to download.

You can use this to download the NDJSON files created for the bulk member match request.

Query Parameters

None.

Request Body

Initial Bulk Request Body

A bulk member match request is formatted as a FHIR Parameters resource with a repeating list of parameters that each represent one member (Patient resource). Each MemberBundle entry in the bulk member match request must conform with the guidelines provided for a single $member-match request body.

Bulk Member Match Status Request Body

None. Use the sessionId from the response to your initial bulk request as a path parameter to get the member match request status.

Bulk Member Match File Request Body

None. Use the sessionId and the fileName that was returned by the status response as path parameters to download the resource files.

Success Response

Initial Bulk Member Match Response

Status code 202 Accepted

The request was accepted.

The response header includes a ContentLocation entry that gives the endpoint that can be used for subsequent status requests. The sessionId is given in the last part of the URL path.

Status of Bulk Member Match Response

Status code 200

The request succeeded. Processing of the bulk request is complete.

The response body contains an output array with one or more Group entries and associated Parameters entries that identify the type of Group (for example, matched members). Each has a url property that includes the name of the NDJSON file containing the data for that resource. A response for a bulk member match request might look something like this:

{
  "transactionTime": "2026-08-13T13:28:11Z",
  "request": "<server>/csp/healthshare/hp-pdex/app/api/responder/FHIRResponderService/Group/$bulk-member-match",
  "output": [
    {
      "type": "Group",
      "url": "<server>/csp/healthshare/hp-pdex/app/api/responder/FHIRResponderService/bulk-data-export/file/21/Group_Group-0001.ndjson"
    },
    {
      "type": "Parameters",
      "url": "<server>/csp/healthshare/hp-pdex/app/api/responder/FHIRResponderService/bulk-data-export/file/21/Parameters_Parameters-0001.ndjson"
    }
  ],
  "error": [],
  "requiresAccessToken": "true"
}
Status code 202 Accepted

The request was accepted.

This code indicates the bulk member match session is still in progress. The response contains a RETRY-AFTER header with an integer in seconds. This indicates how long a requester must wait before making another status polling request

Bulk Member Match File Response

Status code 200 OK

The request was successful.

The NDJSON file content is included in the response body.

Error Responses

The following response error codes may be returned, depending on the method invoked:

Status code 401 Unauthorized

Possible causes include:

  • No valid token found

Status code 403 Forbidden

The requester does not have the necessary permissions, accompanied by an OperationOutcomeOpens in a new tab resource that indicates the specific nature of the failure. This could include:

  • Token does not include required OAuth scopes

Status code 406 Not Acceptable

Possible causes include:

  • Accept header does not include application/fhir+json.

Status code 415 Unsupported Media Type

Possible causes include:

  • Content-Type header is not application/fhir+json.

Status code 429 Too Many Requests

Possible causes include:

  • The requester has polled the status endpoint too frequently

Status code 500 Internal Server Error

Error from the responding payer's internal systems, accompanied by an OperationOutcomeOpens in a new tab resource that indicates the specific nature of the failure. This could include:

  • Request was missing required data

  • Payer's system has missing configuration information

  • The session does not belong to the requester

Status code 504 Gateway Timeout

Possible causes include:

  • An internal request in the process timed out

FeedbackOpens in a new tab