Get self registration challenge questions.
get
/iam/governance/selfservice/api/v1/unauthservice/selfregistration
Returns the challenge questions which are configured by the administrator. The responses to the challenge questions needs to be submitted as part of the "POST" request for self registration.
Request
There are no request parameters for this operation.
Back to TopResponse
Supported Media Types
- application/json
200 Response
Successful
Headers
-
ResponseTime: string
Captures the time in milliseconds taken for processing the request.
404 Response
Resource not found
500 Response
Internal Server Error
Default Response
Unexpected error
Examples
This retrieves the information a user needs to supply to selfregister. The information shown here is against a pseudo system and serves as a prototype.
cURL Example
curl -H "Content-Type: application/json" -X GET https://pseudo.com/iam/governance/selfservice/api/v1/unauthservice/selfregistration
Example of GET Response Body
The following example shows the contents of the response body in JSON format.
{ "links": [ { "rel": "self", "href": "https://pseudo.com/iam/governance/selfservice/api/v1/unauthservice/selfregistration" } ], "challengeQuestions": [ "What is the name of your pet?", "What is your mother's maiden name?", "What is the city of your birth?", "What is your favorite color?" ] }