Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
korsikov
Partner - Specialist III
Partner - Specialist III

qlik user ls --filter. Examples

Hi there

try to use filter option for Qlik Cli

qlik user ls --email korsikov@my.com works fine

But --filter not working anyway

qlik user ls --filter 'email co korsikov'

qlik user ls --filter 'email co \"korsikov\"'

qlik user ls --filter email co 'korsikov'

and more and more another.

that is correct syntax?

 

Labels (2)
1 Solution

Accepted Solutions
hakana
Employee
Employee

Hi,
I think this could have to do with how windows escape the "

Could you try 

qlik user ls --filter "email co \"Korsikov\""

 

I'm using bash myself but I will see if I can get hold of a Windows PowerShell

View solution in original post

4 Replies
korsikov
Partner - Specialist III
Partner - Specialist III
Author

PS D:\d\qlik-cli> .\qlik.exe user ls --filter 'email co "korsikov"'
Error: {
"traceId": "0000000000000000f14dcc3348c7b6a8",
"errors": [
{
"code": "IDENTITIES-10310",
"detail": "invalid filter",
"status": 400,
"title": "Bad Request"
}
]
}

 

PS D:\d\qlik-cli> .\qlik.exe version
version: 2.15.0 branch: commit: 614392e3457b1a67342341ad4b557dd155cd5107

hakana
Employee
Employee

Hi,
I think this could have to do with how windows escape the "

Could you try 

qlik user ls --filter "email co \"Korsikov\""

 

I'm using bash myself but I will see if I can get hold of a Windows PowerShell

korsikov
Partner - Specialist III
Partner - Specialist III
Author

@hakana  Thanks for help. 

your advice was helpful to me

hakana
Employee
Employee

And I have a new version that seems to work :

qlik user ls --filter 'email co \"Korsikov\"'