Query the displayNames based on the match field, filters, orders, limitSize. Default limit to 10.
Request
Body Params application/json
{
"additionalFields": [
"type"
],
"effectiveDate": "2019-08-24",
"filters": [
"name",
"=",
"PM"
],
"limit": 10,
"matchField": "searchName",
"operator": "=",
"orders": [
"name",
"ASC"
],
"value": "Tom"
}
Request samples
curl --location --request POST '//searchName' \
--header 'Content-Type: application/json' \
--data-raw '{
"additionalFields": [
"type"
],
"effectiveDate": "2019-08-24",
"filters": [
"name",
"=",
"PM"
],
"limit": 10,
"matchField": "searchName",
"operator": "=",
"orders": [
"name",
"ASC"
],
"value": "Tom"
}'
Responses
{
"code": 0,
"data": {
"checksum": "string",
"fileId": "string",
"fileName": "string",
"fileType": "JPG",
"size": 0,
"url": "string"
},
"message": "string"
}
Modified at 2025-04-04 11:36:48