idstringrequired
The resource ID
>= 1
Example:123
The resource ID
>= 1
Example:123
A FHIR resource
Success
A FHIR resource
{
"resourceType": "Parameters",
"parameter": [
{
"name": "operation",
"part": [
{
"name": "type",
"valueString": "add"
},
{
"name": "path",
"valueString": "Patient"
},
{
"name": "name",
"valueString": "birthDate"
},
{
"name": "value",
"valueDate": "1930-01-01"
}
]
}
]
}curl --request PATCH \
--url http://localhost:8080/fhir/R4/DiagnosticReport/123 \
--header 'Accept: application/fhir+json, application/fhir+xml' \
--header 'Authorization: Bearer ' \
--header 'Content-Type: application/fhir+json' \
--data '{
"resourceType": "Parameters",
"parameter": [
{
"name": "operation",
"part": [
{
"name": "type",
"valueString": "add"
},
{
"name": "path",
"valueString": "Patient"
},
{
"name": "name",
"valueString": "birthDate"
},
{
"name": "value",
"valueDate": "1930-01-01"
}
]
}
]
}'{}