API ReferencePasswordsSecurity Questions
GET
/v1/auth/security-questions/verify

Authorization

Descope Project ID:Refresh JWT
AuthorizationBearer <token>

Project ID:Refresh JWT as bearer token.

In: header

Get the security questions for a user to verify

curl -X GET "https://api.descope.com/v1/auth/security-questions/verify"
{  "questions": [    {      "id": "string",      "text": "string"    }  ]}
export interface Response {questions?: SecurityQuestion[]}/** * Same as service service's SecurityQuestion, but we don't want to depend on project service */export interface SecurityQuestion {id?: stringtext?: string}
Was this helpful?