Account Creation issue in Web services application

Hi @GutteStolt ,

One of the best ways I can tell you to debug why the account is not being created.

Write a sample before rule in which you can add some logs that contain requestEndPoint (it contains the header, body, context url, method type, response attribute map, and response code).

In the logs, you can see everything, like the URL, body, and method. So, use the same thing in the Postman application with different values. and hit submit. Then you will get the response and see what is coming. Later, you can understand based on the output you got in response. If there is a problem while hitting API, you will get that. And, later, you can change the configuration in the application accordingly.

import java.util.List;
  import sailpoint.object.ProvisioningPlan.AccountRequest;
  import sailpoint.object.ProvisioningPlan.AccountRequest.Operation;
  import sailpoint.object.ProvisioningPlan.AttributeRequest;
  import sailpoint.object.ProvisioningPlan.ObjectOperation;
  import sailpoint.object.ProvisioningPlan.Operation;

  log.error("Entering into ABC Create Before Rule");

  log.error("The provisioning plan is: "+provisioningPlan.toXml());

  log.error("The Request end point before is: "+ requestEndPoint);

  log.error("Exit from ABC Create Before Rule");
  
  return requestEndPoint;