Search An Entity
Last updated
Was this helpful?
Was this helpful?
curl --location \
--request POST \
--header 'Content-Type: application/json' \
'{registry-url}/api/v1/Place/search' \
--data-raw '{
"filters": {
"name": {
"eq": "UP Public School"
}
},
"limit": 1,
"offset": 0
}'printf '{
"filters": {
"school": {
"eq": "UP Public School"
}
},
"limit": 1,
"offset": 0
}'| http POST '{registry-url}/api/v1/Place/search' \
Content-Type:'application/json' \