Understanding NERM Workflow Debug logs

Here is the log of my recent workflow execution. We have a requirement to capture the name fields in the form and validate them for duplication, The workflow is working as expected but in the logs, all I see is empty attributes passed between steps. How are people debugging these? Am I missing something?


31/03/2026 - 16:56:12.93 UTC - :user | Neprofile dashboard - Request Form Action - submitted by Shiva Sankuri ID (2356ce80-753f-4744-a0db-cc4bb3d51822) - with the following values: {"attr_first_name"=>"test3", "attr_last_name"=>"nerm3", "attr_email_address"=>"test.nerm166@test.com"}

31/03/2026 - 16:56:13.06 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: a61dbf22-b92a-4932-9aba-7bb5ffad152b

31/03/2026 - 16:56:13.30 UTC - :system - Set Attributes Action - executed - with the following values: {"attr_duplicate_person_email"=>"", "attr_duplicate_person"=>"", "attr_profile_type"=>"Broker", "attr_email_address"=>"", "attr_email_holder"=>"test.nerm166@test.com", "attr_request_id"=>"2308", "attr_last_name"=>"", "attr_first_name"=>""}

31/03/2026 - 16:56:13.38 UTC - :system - Step Manager - Assigned next action RestApiAction ID: a2fddaa1-dccd-4a4a-99f5-952cdce43886

31/03/2026 - 16:56:13.69 UTC - :system - Rest API Info - Response code: 200

31/03/2026 - 16:56:13.76 UTC - :system - Rest API Action - executed - Endpoint: https://XXXX-sb.nonemployee.com/api/advanced_search/run, HTTP Verb: POST, Body: { "advanced_search": { "condition_rules_attributes": [ { "type": "ProfileAttributeRule", "condition_object_id": "1e24e79a-57df-4781-b28b-460536cfc6db", "object_type": "NeAttribute", "comparison_operator": "==", "value": "{{request.email_holder}}" }, { "type": "ProfileTypeRule", "comparison_operator": "==", "value": "def48fcf-dcbd-48a5-bd2b-ac137cf48117" } ] } } - with the following values: {"attr_email_holder"=>"", "attr_email_address"=>"", "attr_request_id"=>"", "attr_last_name"=>"", "attr_first_name"=>"", "attr_profile_type"=>""}

31/03/2026 - 16:56:13.99 UTC - :system - Step Manager - Set current condition to WorkflowCondition ID: 65f48ffd-6658-4d52-817e-82f894ba8476 as condition not met

31/03/2026 - 16:56:14.00 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 528c2242-f6b1-4982-b06a-1ff64f72833d

31/03/2026 - 16:56:14.15 UTC - :system - Set Attributes Action - executed - with the following values: {"attr_flag"=>"", "attr_email_address"=>"", "attr_request_id"=>"", "attr_last_name"=>"", "attr_first_name"=>"", "attr_profile_type"=>"", "attr_email_holder"=>""}

31/03/2026 - 16:56:14.23 UTC - :system - Step Manager - Assigned next action RestApiAction ID: 37309f91-4421-4baf-9f15-7502b426eb71

31/03/2026 - 16:56:14.70 UTC - :system - Rest API Info - Response code: 200

31/03/2026 - 16:56:14.79 UTC - :system - Rest API Action - executed - Endpoint: https://XXXX-sb.nonemployee.com/api/advanced_search/run, HTTP Verb: POST, Body: { "advanced_search": { "condition_rules_attributes": [ { "type": "ProfileAttributeRule", "condition_object_id": "c3a4a7e5-72b2-4beb-8b13-836735f16446", "object_type": "NeAttribute", "comparison_operator": "==", "value": "{{request.first_name}}" }, { "type": "ProfileAttributeRule", "condition_object_id": "b298fcbd-5d4e-49cb-8666-37fab52a5765", "object_type": "NeAttribute", "comparison_operator": "==", "value": "{{request.last_name}}" }, { "type": "ProfileTypeRule", "comparison_operator": "==", "value": "def48fcf-dcbd-48a5-bd2b-ac137cf48117" } ] } } - with the following values: {"attr_first_name"=>"", "attr_last_name"=>"", "attr_flag"=>"0b112626-2cb4-4fad-adaf-5af71c0fa380", "attr_email_address"=>"", "attr_request_id"=>"", "attr_profile_type"=>"", "attr_email_holder"=>""}

31/03/2026 - 16:56:14.94 UTC - :system - Step Manager - Assigned next action NotificationAction ID: b6605e3d-0efb-456b-a8b1-6fd55b2272f2 as condition was met

31/03/2026 - 16:56:15.06 UTC - :system - Notification Action - executed - Notifications scheduled for delivery

31/03/2026 - 16:56:15.15 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 9537a9a8-dd10-42f4-a6cb-15365c132fd2

31/03/2026 - 16:56:15.29 UTC - :system - Set Attributes Action - executed - with the following values: {"attr_population_assignment"=>"Profile ID: 74bbed99-59c1-4561-81f6-538f780055f1", "attr_email_address"=>"", "attr_request_id"=>"", "attr_flag"=>"", "attr_last_name"=>"", "attr_first_name"=>"", "attr_profile_type"=>"", "attr_email_holder"=>""}

31/03/2026 - 16:56:15.47 UTC - :system - Performer Info - Session has been finalized and marked complete

31/03/2026 - 16:56:15.48 UTC - :system - DashboardRouter - session has completed, redirecting.

Hi Shivaprasad,

The debug logs provide all the events that the NERM system processed for the workflow and the audit data for each action. The attribute values shows are generally the values that changed within that action - not the value of the attribute at that point in time.

Lets break this down a bit:

31/03/2026 - 16:56:12.93 UTC - :user | Neprofile dashboard - Request Form Action - submitted by Shiva Sankuri ID (2356ce80-753f-4744-a0db-cc4bb3d51822) - with the following values: {"attr_first_name"=>"test3", "attr_last_name"=>"nerm3", "attr_email_address"=>"``test.nerm166@test.com``"}

  • A request From was submitted by the seen user. In that form was the first_name, last_name, and email_address attributes, and we can see the values that were entered for each.

31/03/2026 - 16:56:13.06 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: a61dbf22-b92a-4932-9aba-7bb5ffad152b

  • After the Request form, the next action was a Set Attribute Values action

31/03/2026 - 16:56:13.30 UTC - :system - Set Attributes Action - executed - with the following values: {"attr_duplicate_person_email"=>"", "attr_duplicate_person"=>"", "attr_profile_type"=>"Broker", "attr_email_address"=>"", "attr_email_holder"=>"``test.nerm166@test.com``", "attr_request_id"=>"2308", "attr_last_name"=>"", "attr_first_name"=>""}

  • That Set Attribute Values action was executed, setting some values. The Attributes that are empty are those that are present within the workflow session but were not actually changed.

31/03/2026 - 16:56:13.38 UTC - :system - Step Manager - Assigned next action RestApiAction ID: a2fddaa1-dccd-4a4a-99f5-952cdce43886

  • System moved to the next action, a REST API action

31/03/2026 - 16:56:13.69 UTC - :system - Rest API Info - Response code: 200

  • The REST API action was executed and responded with a 200 code

31/03/2026 - 16:56:13.76 UTC - :system - Rest API Action - executed - Endpoint: ``https://XXXX-sb.nonemployee.com/api/advanced_search/run``, HTTP Verb: POST, Body: { "advanced_search": { "condition_rules_attributes": [ { "type": "ProfileAttributeRule", "condition_object_id": "1e24e79a-57df-4781-b28b-460536cfc6db", "object_type": "NeAttribute", "comparison_operator": "==", "value": "{{request.email_holder}}" }, { "type": "ProfileTypeRule", "comparison_operator": "==", "value": "def48fcf-dcbd-48a5-bd2b-ac137cf48117" } ] } } - with the following values: {"attr_email_holder"=>"", "attr_email_address"=>"", "attr_request_id"=>"", "attr_last_name"=>"", "attr_first_name"=>"", "attr_profile_type"=>""}

  • This is the full response and execution of the action.
  • We can see the Endpoint, Verb, and Body that was sent.
  • Then, after the “With the following values” text, we can see the attributes that were changed after this action executed - which looks to be none

31/03/2026 - 16:56:13.99 UTC - :system - Step Manager - Set current condition to WorkflowCondition ID: 65f48ffd-6658-4d52-817e-82f894ba8476 as condition not met

  • Next, the system hit a condition, but it was evaluated to False (condition was not met)

31/03/2026 - 16:56:14.00 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 528c2242-f6b1-4982-b06a-1ff64f72833d

  • As the condition was not met, onto the next action - a Set Attribute Values action

31/03/2026 - 16:56:14.15 UTC - :system - Set Attributes Action - executed - with the following values: {"attr_flag"=>"", "attr_email_address"=>"", "attr_request_id"=>"", "attr_last_name"=>"", "attr_first_name"=>"", "attr_profile_type"=>"", "attr_email_holder"=>""}

  • The Set Attribute Values action was executed - no values were changed it seems

31/03/2026 - 16:56:14.23 UTC - :system - Step Manager - Assigned next action RestApiAction ID: 37309f91-4421-4baf-9f15-7502b426eb71

  • System set the next action, a REST API action

31/03/2026 - 16:56:14.70 UTC - :system - Rest API Info - Response code: 200

  • API executed and response code was a 200

31/03/2026 - 16:56:14.79 UTC - :system - Rest API Action - executed - Endpoint: ``https://XXXX-sb.nonemployee.com/api/advanced_search/run``, HTTP Verb: POST, Body: { "advanced_search": { "condition_rules_attributes": [ { "type": "ProfileAttributeRule", "condition_object_id": "c3a4a7e5-72b2-4beb-8b13-836735f16446", "object_type": "NeAttribute", "comparison_operator": "==", "value": "{{request.first_name}}" }, { "type": "ProfileAttributeRule", "condition_object_id": "b298fcbd-5d4e-49cb-8666-37fab52a5765", "object_type": "NeAttribute", "comparison_operator": "==", "value": "{{request.last_name}}" }, { "type": "ProfileTypeRule", "comparison_operator": "==", "value": "def48fcf-dcbd-48a5-bd2b-ac137cf48117" } ] } } - with the following values: {"attr_first_name"=>"", "attr_last_name"=>"", "attr_flag"=>"0b112626-2cb4-4fad-adaf-5af71c0fa380", "attr_email_address"=>"", "attr_request_id"=>"", "attr_profile_type"=>"", "attr_email_holder"=>""}

  • This is the full response and execution of the action.
  • We can see the Endpoint, Verb, and Body that was sent.
  • Then, after the “With the following values” text, we can see the attributes that were changed after this action executed - which looks to be none

31/03/2026 - 16:56:14.94 UTC - :system - Step Manager - Assigned next action NotificationAction ID: b6605e3d-0efb-456b-a8b1-6fd55b2272f2 as condition was met

  • Next, the system hit a condition, but it was evaluated to False (condition was not met) . So, it moved to the next action, a Notification

31/03/2026 - 16:56:15.06 UTC - :system - Notification Action - executed - Notifications scheduled for delivery

  • The Notification was scheduled to be processed

31/03/2026 - 16:56:15.15 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 9537a9a8-dd10-42f4-a6cb-15365c132fd2

  • Next action is a Set Attribute Values

31/03/2026 - 16:56:15.29 UTC - :system - Set Attributes Action - executed - with the following values: {"attr_population_assignment"=>"Profile ID: 74bbed99-59c1-4561-81f6-538f780055f1", "attr_email_address"=>"", "attr_request_id"=>"", "attr_flag"=>"", "attr_last_name"=>"", "attr_first_name"=>"", "attr_profile_type"=>"", "attr_email_holder"=>""}

  • the Set Attribute Values was executed, only changing one value (the Population_assignment)

31/03/2026 - 16:56:15.47 UTC - :system - Performer Info - Session has been finalized and marked complete

  • All actions have been completed

31/03/2026 - 16:56:15.48 UTC - :system - DashboardRouter - session has completed, redirecting.

  • Based on the Routing configuration, user was redirected to the Status Page / Home Page or request profile.

Thanks @ZackTarantino-Woolson That’s a wonderful explanation.
Is there any way to print the existing values of those attributes.

My real problem is with another workflow. When I integrated same steps with the other workflow, it’s not working in the intended manner
Here is the use case : While creating a new user, if the filled in user’s first name and last name combination already exists then alert the admin team for potential duplicates.
Here is the Step payload we are using , I tried with request.first_name, attr_first_name, profile.firstname but none of them are working. So wondering how the fields are passed between the steps
{
“advanced_search”: {
“condition_rules_attributes”: [
{
“type”: “ProfileAttributeRule”,
“condition_object_id”: “c3a4a7e5-72b2-4beb-8b13-836735f16446”,
“object_type”: “NeAttribute”,
“comparison_operator”: “==”,
“value”: “{{attribute.first_name}}”
},
{
“type”: “ProfileAttributeRule”,
“condition_object_id”: “b298fcbd-5d4e-49cb-8666-37fab52a5765”,
“object_type”: “NeAttribute”,
“comparison_operator”: “==”,
“value”: “{{attribute.last_name}}”
},
{
“type”: “ProfileTypeRule”,
“comparison_operator”: “==”,
“value”: “def48fcf-dcbd-48a5-bd2b-ac137cf48117”
}
]
}
}

Logs

31/03/2026 - 20:02:44.68 UTC - :user | Neprofile dashboard - Request Form Action - submitted by Shiva Sankuri ID (2356ce80-753f-4744-a0db-cc4bb3d51822) - with the following values: {“attr_first_name”=>“test3”, “attr_last_name”=>“nerm3”, “attr_email_address”=>“test1234@aghi.com”}

31/03/2026 - 20:02:44.85 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: d3c15dfc-5d4c-4551-96e4-b75bca99fc3b

31/03/2026 - 20:02:45.30 UTC - :system - Set Attributes Action - executed - with the following values: {“attr_api_response_1”=>“”, “attr_profile_type”=>“Broker”, “attr_request_id”=>“2315”, “attr_duplicate_person_first_and_last”=>“”, “attr_duplicate_person”=>“”, “attr_email_address”=>“”, “attr_email_holder”=>“test1234@aghi.com”, “attr_duplicate_person_email”=>“”, “attr_last_name”=>“”, “attr_first_name”=>“”}

31/03/2026 - 20:02:45.56 UTC - :system - Step Manager - Set current condition to WorkflowCondition ID: 9bc9d2bb-df49-4e75-b36f-ad048891c866 as condition not met

31/03/2026 - 20:02:45.58 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 08f63963-4801-404b-8fb4-ce3fecb8944b as condition was met

31/03/2026 - 20:02:45.81 UTC - :system - Set Attributes Action - executed - with the following values: {“attr_person_id”=>“NE00715”, “attr_email_address”=>“”, “attr_request_id”=>“”, “attr_last_name”=>“”, “attr_first_name”=>“”, “attr_profile_type”=>“”, “attr_api_response_1”=>“”, “attr_email_holder”=>“”}

31/03/2026 - 20:02:45.93 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 3769fa3e-7c52-40d9-a3c3-4609e58bb0e9

31/03/2026 - 20:02:46.28 UTC - :system - Set Attributes Action - executed - with the following values: {“attr_population_assignment”=>“Profile ID: 74bbed99-59c1-4561-81f6-538f780055f1”, “attr_email_address”=>“”, “attr_request_id”=>“”, “attr_last_name”=>“”, “attr_person_id”=>“”, “attr_first_name”=>“”, “attr_profile_type”=>“”, “attr_api_response_1”=>“”, “attr_email_holder”=>“”}

31/03/2026 - 20:02:46.47 UTC - :system - Step Manager - Assigned next action RunWorkflowAction ID: 2aa35719-89aa-401e-b4a2-f13820da3120

31/03/2026 - 20:02:47.70 UTC - :system - Session Attribute Transfer - executed - Transferred from WorkflowSession ID: 5094ae22-ad39-474e-9c71-1f958aff633e to WorkflowSession ID: 7c433591-f646-4512-9406-e561bd9bcd2c - with the following operations: {“attr_last_name”=>“set value - nerm3”, “attr_assignment_start_date”=>“set value - 03/31/2026”, “attr_person_id”=>“set value - NE00715”, “attr_first_name”=>“set value - test3”, “attr_population_assignment”=>“set value - Profile ID: 74bbed99-59c1-4561-81f6-538f780055f1”, “attr_email_address”=>“set value - test1234@aghi.com”, “attr_request_id”=>“set value - 2315”}

31/03/2026 - 20:02:48.12 UTC - :system - Run Workflow Action - executed - Triggered Workflow ID: 70022513-7e3c-4812-b4f5-85e673d3a77a

31/03/2026 - 20:02:48.60 UTC - :system - Performer Info - Session is continuing into child session 7c433591-f646-4512-9406-e561bd9bcd2c waiting for its completion

31/03/2026 - 20:02:48.67 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - DashboardRouter - session in progress, redirecting.

31/03/2026 - 20:03:09.56 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :user | Neprofile dashboard - Request Form Action - submitted by Shiva Sankuri ID (2356ce80-753f-4744-a0db-cc4bb3d51822) - with the following values: {“attr_first_name”=>“test3”, “attr_last_name”=>“nerm3”, “attr_email_address”=>“test1234@aghi.com”, “attr_assignment_organization”=>“01883972-c6e8-4e75-8d4e-d7d6b2955116, “, “attr_duplicate_permissions”=>“75aeaf07-83eb-4cf9-8e91-0438028d3547”, “attr_add_all_available_branch_codes”=>“d1fcc2bc-d0a3-4c14-8dd5-27dab70a3a3e”, “attr_assignment_start_date”=>“03/31/2026”, “attr_lifestyle_quote_ne_attribute”=>””, “attr_home_branch_code”=>“32d2f0c8-a2bc-49ab-8f17-f2cdfdffe678, , “, “attr_additional_branch_codes”=>”, “, “attr_line_of_business_name”=>”, 1054e8f5-02f4-4add-b5db-292eb06a8aa2”}

31/03/2026 - 20:03:09.65 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Assigned next action SetAttributesAction ID: aa48819c-0220-445f-be55-d77eb21e61d6

31/03/2026 - 20:03:09.73 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Set Attributes Action - executed - with the following values: {“attr_requester_email”=>“shiva.sankuri@xxx.com”, “attr_requester”=>“Shiva Sankuri”}

31/03/2026 - 20:03:09.83 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Set current condition to WorkflowCondition ID: 1614d0a0-fa3b-4c4f-8284-81f0fd978631 as condition not met

31/03/2026 - 20:03:09.87 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Set current condition to WorkflowCondition ID: cc1b4890-5c5c-48d2-ba0b-d3124d2b1a84 as condition not met

31/03/2026 - 20:03:09.91 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Set current condition to WorkflowCondition ID: a8ae2393-cfa6-4a60-b1f3-2d0ba659195e as condition not met

31/03/2026 - 20:03:09.96 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Set current condition to WorkflowCondition ID: 4cbb40e0-b333-41c0-baee-28eb32f3f6ff as condition not met

31/03/2026 - 20:03:09.96 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Assigned next action AutoAssignAction ID: 91421c39-09d8-4a5c-a0a0-8c7481aa8995

31/03/2026 - 20:03:10.04 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Auto Assign Action - executed - with roles assigned: [Hub International, NERM Administrator ] - with no contributors assigned

31/03/2026 - 20:03:10.16 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Assigned next action SetAttributesAction ID: 0679abd9-d213-4c8a-899d-fc5d20888e7d

31/03/2026 - 20:03:10.27 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Set Attributes Action - executed - with the following values: {“attr_assignment_id”=>“Assignment00481”, “attr_preferred_display_name”=>“”, “attr_is_collaborator”=>“”}

31/03/2026 - 20:03:10.30 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Assigned next action SetAttributesAction ID: bdd49336-7c54-4507-9cb4-47ab830b83e4

31/03/2026 - 20:03:10.39 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Set Attributes Action - executed - with the following values: {“attr_first_name”=>“”, “attr_last_name”=>“”, “attr_email_address”=>“”, “attr_assignment_name”=>"test3 nerm3 (test1234@aghi.com) "}

31/03/2026 - 20:03:10.43 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Assigned next action SetAttributesAction ID: 8c35eb14-883a-4b3c-bbae-094856281495

31/03/2026 - 20:03:10.46 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Set Attributes Action - executed - with no attribute changes

31/03/2026 - 20:03:10.48 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Step Manager - Assigned next action CreateProfileAction ID: 614f5958-440b-4c6c-8112-23c7e95be56a

31/03/2026 - 20:03:10.49 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Create Profile Info - With Parent Session ID (5094ae22-ad39-474e-9c71-1f958aff633e)

31/03/2026 - 20:03:10.57 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Create Profile Info - Creating new Profile with Owner ID () and User ID (

31/03/2026 - 20:03:10.72 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Attribute Transfer - executed - Transferred from WorkflowSession ID: 7c433591-f646-4512-9406-e561bd9bcd2c to Profile ID: - with the following values: {“attr_email_address”=>“test1234@aghi.com”, “attr_request_id”=>“2315”, “attr_assignment_id”=>“Assignment00481”, “attr_duplicate_permissions”=>“NeAttributeOption ID: 75aeaf07-83eb-4cf9-8e91-0438028d3547”, “attr_home_branch_code”=>“Profile ID: 32d2f0c8-a2bc-49ab-8f17-f2cdfdffe678”, “attr_assignment_organization”=>“Profile ID: 01883972-c6e8-4e75-8d4e-d7d6b2955116”, “attr_requester”=>“Shiva Sankuri”, “attr_population_assignment”=>“Profile ID: 74bbed99-59c1-4561-81f6-538f780055f1”, “attr_add_all_available_branch_codes”=>“NeAttributeOption ID: d1fcc2bc-d0a3-4c14-8dd5-27dab70a3a3e”, “attr_last_name”=>“nerm3”, “attr_requester_email”=>“shiva.sankuri@xxxx.com”, “attr_assignment_start_date”=>“03/31/2026”, “attr_person_id”=>“NE00715”, “attr_first_name”=>“test3”, “attr_assignment_name”=>“test3 nerm3 (test1234@aghi.com)”, “attr_line_of_business_name”=>“NeAttributeOption ID: 1054e8f5-02f4-4add-b5db-292eb06a8aa2”}

31/03/2026 - 20:03:12.46 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Create Profile Action - profile created with ID: c5f4094e-e240-4340-8004-c2a68951fbc0

31/03/2026 - 20:03:12.91 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Performer Info - Session has been finalized and marked complete

31/03/2026 - 20:03:13.15 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Session Attribute Transfer - executed - Transferred from WorkflowSession ID: 7c433591-f646-4512-9406-e561bd9bcd2c to WorkflowSession ID: 5094ae22-ad39-474e-9c71-1f958aff633e - with the following operations: {“attr_assignment_organization”=>“set value - Profile ID: 01883972-c6e8-4e75-8d4e-d7d6b2955116”, “attr_assignment_rr_person”=>“set value - Profile ID: c5f4094e-e240-4340-8004-c2a68951fbc0”}

31/03/2026 - 20:03:13.15 UTC - Child session 7c433591-f646-4512-9406-e561bd9bcd2c executes - :system - Performer Info - Session 7c433591-f646-4512-9406-e561bd9bcd2c is going back to parent (5094ae22-ad39-474e-9c71-1f958aff633e)

31/03/2026 - 20:03:13.20 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: a59ca644-a7e5-4c4d-8b89-55f7390f599c

31/03/2026 - 20:03:13.45 UTC - :system - Set Attributes Action - executed - with the following values: {“attr_flag”=>“”, “attr_email_address”=>“”, “attr_request_id”=>“”, “attr_assignment_organization”=>“”, “attr_assignment_rr_person”=>“”, “attr_population_assignment”=>“”, “attr_last_name”=>“”, “attr_person_id”=>“”, “attr_first_name”=>“”, “attr_profile_type”=>“”, “attr_api_response_1”=>“”, “attr_email_holder”=>“”}

31/03/2026 - 20:03:13.57 UTC - :system - Step Manager - Assigned next action RestApiAction ID: 146b0015-7c30-4cac-bf1b-679e39833d13

31/03/2026 - 20:03:14.92 UTC - :system - Rest API Info - Response code: 200

31/03/2026 - 20:03:15.03 UTC - :system - Rest API Action - executed - Endpoint: https://XXXX-sb.nonemployee.com/api/advanced_search/run, HTTP Verb: POST, Body: { “advanced_search”: { “condition_rules_attributes”: [ { “type”: “ProfileAttributeRule”, “condition_object_id”: “c3a4a7e5-72b2-4beb-8b13-836735f16446”, “object_type”: “NeAttribute”, “comparison_operator”: “==”, “value”: “{{attribute.first_name}}” }, { “type”: “ProfileAttributeRule”, “condition_object_id”: “b298fcbd-5d4e-49cb-8666-37fab52a5765”, “object_type”: “NeAttribute”, “comparison_operator”: “==”, “value”: “{{attribute.last_name}}” }, { “type”: “ProfileTypeRule”, “comparison_operator”: “==”, “value”: “def48fcf-dcbd-48a5-bd2b-ac137cf48117” } ] } } - with the following values: {“attr_first_name”=>“”, “attr_last_name”=>“”, “attr_email_address”=>“”, “attr_request_id”=>“”, “attr_assignment_organization”=>“”, “attr_flag”=>“”, “attr_assignment_rr_person”=>“”, “attr_population_assignment”=>“”, “attr_person_id”=>“”, “attr_profile_type”=>“”, “attr_api_response_1”=>“”, “attr_email_holder”=>“”}

31/03/2026 - 20:03:15.39 UTC - :system - Step Manager - Set current condition to WorkflowCondition ID: eb2d99a9-f197-4935-a3e5-b730a737ffbd as condition not met

31/03/2026 - 20:03:15.40 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: b9d616ab-6abb-4846-b623-866c36f735c7

31/03/2026 - 20:03:15.61 UTC - :system - Set Attributes Action - executed - with the following values: {“attr_duplicate_person”=>“”, “attr_email_address”=>“”, “attr_request_id”=>“”, “attr_assignment_organization”=>“”, “attr_flag”=>“”, “attr_assignment_rr_person”=>“”, “attr_population_assignment”=>“”, “attr_last_name”=>“”, “attr_person_id”=>“”, “attr_first_name”=>“”, “attr_profile_type”=>“”, “attr_api_response_1”=>“”, “attr_email_holder”=>“”}

31/03/2026 - 20:03:15.88 UTC - :system - Step Manager - Assigned next action AutoAssignAction ID: 3da97f56-02b2-4dbc-a5ad-ac7649816cb7

31/03/2026 - 20:03:16.23 UTC - :system - Auto Assign Action - executed - with roles assigned: [Sponsor, Hub International, NERM Administrator ] - with no contributors assigned

31/03/2026 - 20:03:16.44 UTC - :system - Step Manager - Assigned next action SetAttributesAction ID: 6a8cb118-c686-4c05-b7db-74558b46ba86

31/03/2026 - 20:03:16.93 UTC - :system - Set Attributes Action - executed - with the following values: {“attr_duplicate_person_email”=>“”, “attr_duplicate_person”=>“”, “attr_duplicate_person_first_and_last”=>“”, “attr_duplicate_status”=>“”, “attr_prior_brokerage”=>“”, “attr_is_collaborator”=>“NeAttributeOption ID: acdc2dc1-936e-4e44-b453-a5d2e27aa1df”, “attr_email_holder”=>“”, “attr_population_assignment”=>“”, “attr_api_response_holder”=>“”, “attr_api_response_1”=>“”, “attr_email_address”=>“”, “attr_request_id”=>“”, “attr_assignment_organization”=>“”, “attr_flag”=>“”, “attr_assignment_rr_person”=>“”, “attr_last_name”=>“”, “attr_person_id”=>“”, “attr_first_name”=>“”, “attr_profile_type”=>“”}

31/03/2026 - 20:03:17.06 UTC - :system - Step Manager - Assigned next action CreateProfileAction ID: 8832894a-c5e6-4d73-b20c-c30e0da0e98a

31/03/2026 - 20:03:17.21 UTC - :system - Create Profile Info - Creating new Profile with Owner ID () and User ID (

31/03/2026 - 20:03:17.30 UTC - :system - Attribute Transfer - executed - Transferred from WorkflowSession ID: 5094ae22-ad39-474e-9c71-1f958aff633e to Profile ID: - with the following values: {“attr_email_address”=>“test1234@aghi.com”, “attr_request_id”=>“2315”, “attr_is_collaborator”=>“NeAttributeOption ID: acdc2dc1-936e-4e44-b453-a5d2e27aa1df”, “attr_assignment_organization”=>“Profile ID: 01883972-c6e8-4e75-8d4e-d7d6b2955116”, “attr_assignment_rr_person”=>“Profile ID: c5f4094e-e240-4340-8004-c2a68951fbc0”, “attr_last_name”=>“nerm3”, “attr_person_id”=>“NE00715”, “attr_first_name”=>“test3”, “attr_profile_type”=>“Broker”}

31/03/2026 - 20:03:19.65 UTC - :system - Create Profile Action - profile created with ID: 35ba9aec-c841-4d49-91b1-b496de217271

31/03/2026 - 20:03:20.25 UTC - :system - Performer Info - Session has been finalized and marked complete

31/03/2026 - 20:03:20.27 UTC - :system - DashboardRouter - session has completed, redirecting.