
00ufqy4mxkCMrc2vn0h1.5318579510676252E12 (Optiv) asked a question.
I'd like to perform a search on all my users that have set a password recovery question. Is it possible to search on credential values? Something like {{url}}/api/v1/users?search=credentials.recovery_question.question eq "What is the food you least liked as a child?"

Hello @00ufqy4mxkCMrc2vn0h1.5318579510676252E12 (Optiv),
It is possible to find your app integration credentials and also, in the example below you can observe that it asks for the security question, probably you may need to extract this report and filter by the question field.
curl -v -X POST \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "Authorization: SSWS ${api_token}" \
-d '{
"password": { "value": "tlpWENT2m" },
"recovery_question": {
"question": "How many roads must a man walk down?",
"answer": "forty two"
You can learn more about this topic using the following links:
https://developer.okta.com/docs/guides/find-your-app-credentials/main/#overviewhttps://developer.okta.com/docs/reference/api/users/#response-parameters-23
Also, feel free to post this question on our Okta Developer Forums: https://devforum.okta.com and they should be able to help you with this.
Regards,
Natalia
Okta Inc.
Thanks for responding, but that didn't answer my question. My question is how to search for all users that have a recovery question defined. is this possible?