Hello,
I’m trying to get a list of records which have changed since a particular date. This is my post method query:
{
“resourceType”: “Parameters”,
“parameter”: [
{
“name”: “valueSet”,
“resource”: {
“resourceType”: “ValueSet”,
“compose”: {
“inactive”: true,
“include”: [
{
"system": "https://digital.nhs.uk/services/organisation-data-service/CodeSystem/practitioner",
"filter": [
{
"property": "lastChangeDate",
"op": "=",
"value": "2020-01-01"
}
]
}
]
}
}
},
{
"name": "activeOnly",
"valueBoolean": false
}
]
}
This returns a valid 200 http response and 0 records. I think I need to change the op value but I’ve tried using various operation such as ‘>’ and ‘gt’ and they all return error 400 bad request.
Could you advise what I’m doing wrong?
Thanks