Closed JayaShakthi97 closed 4 months ago
$subject
For "AND"
curl --location 'https://localhost:9443/scim2/Users?filter=urn%3Aietf%3Aparams%3Ascim%3Aschemas%3Aextension%3Aenterprise%3A2.0%3AUser%3AaccountLocked%20eq%20%22true%22%20AND%20urn%3Aietf%3Aparams%3Ascim%3Aschemas%3Aextension%3Aenterprise%3A2.0%3AUser%3Adepartment%20eq%20%22123%22' \ --header 'Authorization: Basic *****'
{"totalResults":2,"startIndex":1,"itemsPerPage":2,"schemas":["urn:ietf:params:scim:api:messages:2.0:ListResponse"],"Resources":[{"emails":["johnn1@gmail.com"],"meta":{"created":"2024-06-07T06:29:18.969585Z","location":"https://localhost:9443/scim2/Users/df9cd10b-22d9-40cb-ad31-076b5e33b1d1","lastModified":"2024-06-07T06:30:32.930753Z","resourceType":"User"},"roles":[{"display":"everyone"}],"name":{"givenName":"John","familyName":"johnn1"},"id":"df9cd10b-22d9-40cb-ad31-076b5e33b1d1","userName":"johnn1","urn:ietf:params:scim:schemas:extension:enterprise:2.0:User":{"accountLocked":true,"department":"123"}},{"emails":["johnn2@gmail.com"],"meta":{"created":"2024-06-07T06:29:30.862182Z","location":"https://localhost:9443/scim2/Users/2f9de4b4-0e1a-48a6-b063-866cbacb651c","lastModified":"2024-06-07T06:30:49.432834Z","resourceType":"User"},"roles":[{"display":"everyone"}],"name":{"givenName":"John","familyName":"johnn2"},"id":"2f9de4b4-0e1a-48a6-b063-866cbacb651c","userName":"johnn2","urn:ietf:params:scim:schemas:extension:enterprise:2.0:User":{"accountLocked":true,"department":"123"}}]}
For "and"
curl --location 'https://localhost:9443/scim2/Users?filter=urn%3Aietf%3Aparams%3Ascim%3Aschemas%3Aextension%3Aenterprise%3A2.0%3AUser%3AaccountLocked%20eq%20%22true%22%20and%20urn%3Aietf%3Aparams%3Ascim%3Aschemas%3Aextension%3Aenterprise%3A2.0%3AUser%3Adepartment%20eq%20%22123%22' \ --header 'Authorization: Basic YWRtaW46YWRtaW4='
PR builder started Link: https://github.com/wso2/product-is/actions/runs/9414991853
PR builder completed Link: https://github.com/wso2/product-is/actions/runs/9414991853 Status: success
Purpose
For "AND"
For "and"
Related issue