Create Patient with Signals linking
POST
/fhir/PatientPOST
/fhir/R4/PatientPOST
/fhir/R5/Patientdev
https://api.sandbox.ovok.comCreate a FHIR Patient resource. When withSignals=true, also provisions a corresponding Signals patient.
Parameters
| Name | In | Type | Required | Description |
|---|---|---|---|---|
withSignals | query | boolean | no | Set to true to also provision a matching Signals patient alongside the FHIR Patient. Defaults to false. |
Responses
| Code | Description |
|---|---|
200 | Success. |
400 | The request could not be operated by the server. |
401 | The resource owner or authorization server denied the request. |
404 | The requested resource could not be found. |
422 | The request could not be validated by the server. |
500 | The server encountered an unexpected condition. Please try again later. |
200 → PatientResponseDto (application/json)
A FHIR Patient resource as stored in the FHIR API. When created with ?withSignals=true the resource is re-read after Signals provisioning so any identifiers stamped by the link step are reflected.
resourceType:string(required)id:string(required)
Additional properties allowed.
Example
{
"resourceType": "Patient",
"id": "87ea5dfc-8b8e-384d-8489-79496e706390",
"meta": {
"versionId": "1",
"lastUpdated": {}
},
"name": [
{
"given": [
"Ada"
],
"family": "Lovelace"
}
],
"birthDate": {},
"gender": "female"
}