API: Gets LicensesRuntime can't be filter by not contains

Hello Everyone,I’m trying to get MachineName except ‘test’ from robotType=‘NonProduction’ ,but having trouble with the filter didn’t work
Orchestrater Version:2020.10.9
https://[myCompany]/odata/LicensesRuntime/UiPath.Server.Configuration.OData.GetLicensesRuntime(robotType=‘NonProduction’)?%24filter=not%20contains(MachineName%2C’test’)

Hi @shenandy184,

Can you please try the below expression in filter.

Machine Name ne ‘test’

Thank you for your reply
Still can’t be filter
@odata.count”: 20


Contains(MachineName,‘test’)
@odata.context”: “https://[myCompany]/odata/$metadata#RuntimeLicenses”,
@odata.count”: 3,

not Contains(MachineName,‘test’)
@odata.context”: “https://[myCompany]/odata/$metadata#RuntimeLicenses”,
@odata.count”: 20, should be 17

MachineName ne ‘test’
@odata.context”: “https://[myCompany]/odata/$metadata#RuntimeLicenses”,
@odata.count”: 20,