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 Code 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": true,
"message": "string",
"success": true
}
Modified at 2026-03-02 03:08:55