Connectathon 2026 Wiki

Racsel logo
Back to home

Tasks · T1.2-C

Find ServiceRequest and IPS

View flow

From country B, search active ServiceRequests in country A and retrieve the IPS referenced by the request.

Requirements

T1.2-B

Expected response

Country B HIS displays the ServiceRequest and the IPS needed by the specialist.

Evidence

Screenshot of country B HIS showing the ServiceRequest and IPS information.

Observations

Test cases: TK1.2_TC05-TK1.2_TC07.

Requests to run

Collection

National Node - LACPass IPS

Search active ServiceRequests

curl -X GET "${COUNTRY_A_NODE}/fhir/ServiceRequest?performer=Organization/${PERFORMER_ORG}&status=active&identifier=${SERVICE_REQUEST_IDENTIFIER}" \
  -H "Accept: application/fhir+json"

Expected response

HTTP 200 with a searchset Bundle containing active ServiceRequest resources.

Collection

National Node - LACPass IPS

ITI-68 Retrieve Document

curl -X GET "${COUNTRY_A_NODE}/fhir/Bundle/${IPS_ID}" \
  -H "Accept: application/fhir+json"

Expected response

HTTP 200 with the IPS Bundle referenced by the ServiceRequest.