Read a FHIR Resource
curl https://api.clinikapi.com/v1/fhir/Patient/pt_abc123 \
-H "x-api-key: clk_live_abc123"
{
"resourceType": "Patient",
"id": "pt_abc123",
"meta": {
"tag": [{ "system": "https://clinikapi.com/tenant", "code": "org_def456" }]
},
"name": [{ "family": "Doe", "given": ["Jane"] }],
"gender": "female",
"birthDate": "1990-03-15"
}