Activate and Run the Recipe

After you've configured the connections and other resources, you can activate and run the recipe.

  1. Activate the recipe. See Activate a Recipe or Accelerator.
  2. Run the recipe from an external application.
    1. In the Integrations section of the project workspace, click Actions Actions icon on the integration flow, then select Run.
    2. On the Configure and run page, click Endpoint metadata.
    3. In the panel that opens, copy the Endpoint URL value. This is the integration flow's endpoint URL.
    4. To create a user from an external application, send a POST request to this endpoint URL along with the required payload.
    5. The recipe creates a user and assigns the user to groups in the Oracle Cloud Infrastructure (OCI) domain.
  3. Test the recipe in Oracle Integration.
    1. In the Integrations section of the project workspace, click Actions Actions icon on the Create User and Add in Groups integration flow, then select Run.
    2. On the Configure and run page, in the Request section, click the Body tab and enter the message as the request payload.
      Example of a request payload to create a user:
      {
        "lastName": "Doe",
        "firstName": "John",
        "groups": ["group1","group2"],
        "userName": "jd",
        "email": "j.d@example.com"
      }
      
      Success response if user is created:
      {
        "status" : "Success",
        "displayName" : "John Doe",
        "id" : "850f36f655374b3c81d95ba9b0dd8a20",
        "firstName" : "John",
        "lastName" : "Doe",
        "email" : "j.d@example.com",
        "userName" : "jd"
      }
      
  4. Monitor the running of the integration flow in Oracle Integration. See Monitor Integrations.
  5. Verify that the user is created in Oracle Cloud Infrastructure (OCI) under Identity Domain.