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 Top

Response

Supported Media Types

200 Response

Successful
Headers
Body ()
Root Schema : GetSelfRegistrationResponse
Type: object
Show Source
Nested Schema : challengeQuestions
Type: array
Show Source
Nested Schema : QueAndAnsMap
Type: object
Show Source

404 Response

Resource not found

500 Response

Internal Server Error

Default Response

Unexpected error
Back to Top

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?"
    ]
}
Back to Top