curl --location --request POST 'https://dev.your-api-server.com/api/ner/v1/list/projects' \
--header 'Accept: application/json, text/plain, */*' \
--header 'authorization: {{ACCESS_TOKEN}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"search": "",
"pageNumber": 1,
"pageSize": 100,
"languages": ["hi","en"],
"sortBy":{
"key": "noOfExamples",
"value": "desc"
}
}'
{}