curl --location --request POST 'https://dev.your-api-server.com/api/ner/v1/list/entity' \
--header 'Accept: application/json, text/plain, */*' \
--header 'authorization: {{ACCESS_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"filter": {
"entityType": "trainable"
},
"search": "",
"pageNumber": 1,
"pageSize": 3
}'
{}