Get Password policy using userdetails

get

/oam/services/rest/access/api/v1/pswdmanagement/UserPasswordPolicyRetriever

REST API for getting the applicable password policy for the user. This can be used in an application to display the password rules for the user that the password need to conform to. The userdetails is given as part of query parameter.

Request

Query Parameters
Back to Top

Response

Supported Media Types

200 Response

Password policy assignment
Body ()
Root Schema : PolicyDescriptionResponse
Type: object
Show Source
Nested Schema : messages
Type: array
Show Source
Nested Schema : PolicyMessage
Type: object
Show Source

401 Response

Unauthorized

404 Response

Requested entity not found

500 Response

Internal Server Error
Back to Top

Examples

This example demonstrates the method of getting queried templates.

cURL Example

curl  -H "Content-Type: application/json"  -X GET  -u username:password  https://pseudo.com/iam/governance/applicationmanagement/api/v1/templates?name=Sample

Example of Request Body

The following example shows the contents of the response body in JSON format.

[
  {
    "applicationName": "Sample Disconnected Template",
    "status": "ACTIVE"
  }
]
Back to Top