The Create a user API enables you to create a user in the Authorization server.
Note: Before you begin, ensure that you have created that specific user in the OpenEdge Command Center server.
To create a user in the Authorization server:
  1. Log in to the Authorization server as a user with necessary privileges. For more information, see Log in to Authorization server.
  2. Locate the Create a user API with endpoint POST-/authz/api/users and expand it.
  3. To enable the text area, click Try it out.
  4. In Request body, type the username in JSON format:
    {
      "userName": "<Valid username>"
    }
    
    where, userName is the name of the user that you want to create.
  5. Click Execute.
    If the user creation is successful, you see the following success message.
    {
      "message": "Request successful. The user is created in the Authorization Server."
    }