diff --git a/ui-ngx/src/app/modules/home/components/rule-node/action/assign-customer-config.component.ts b/ui-ngx/src/app/modules/home/components/rule-node/action/assign-customer-config.component.ts
new file mode 100644
index 0000000000..924cb448e3
--- /dev/null
+++ b/ui-ngx/src/app/modules/home/components/rule-node/action/assign-customer-config.component.ts
@@ -0,0 +1,49 @@
+///
+/// Copyright © 2016-2024 The Thingsboard Authors
+///
+/// Licensed under the Apache License, Version 2.0 (the "License");
+/// you may not use this file except in compliance with the License.
+/// You may obtain a copy of the License at
+///
+/// http://www.apache.org/licenses/LICENSE-2.0
+///
+/// Unless required by applicable law or agreed to in writing, software
+/// distributed under the License is distributed on an "AS IS" BASIS,
+/// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+/// See the License for the specific language governing permissions and
+/// limitations under the License.
+///
+
+import { Component } from '@angular/core';
+import { UntypedFormBuilder, UntypedFormGroup, Validators } from '@angular/forms';
+import { RuleNodeConfiguration, RuleNodeConfigurationComponent } from '@shared/models/rule-node.models';
+
+@Component({
+ selector: 'tb-action-node-assign-to-customer-config',
+ templateUrl: './assign-customer-config.component.html',
+ styleUrls: []
+})
+export class AssignCustomerConfigComponent extends RuleNodeConfigurationComponent {
+
+ assignCustomerConfigForm: UntypedFormGroup;
+
+ constructor(private fb: UntypedFormBuilder) {
+ super();
+ }
+
+ protected configForm(): UntypedFormGroup {
+ return this.assignCustomerConfigForm;
+ }
+
+ protected onConfigurationSet(configuration: RuleNodeConfiguration) {
+ this.assignCustomerConfigForm = this.fb.group({
+ customerNamePattern: [configuration ? configuration.customerNamePattern : null, [Validators.required, Validators.pattern(/.*\S.*/)]],
+ createCustomerIfNotExists: [configuration ? configuration.createCustomerIfNotExists : false, []]
+ });
+ }
+
+ protected prepareOutputConfig(configuration: RuleNodeConfiguration): RuleNodeConfiguration {
+ configuration.customerNamePattern = configuration.customerNamePattern.trim();
+ return configuration;
+ }
+}
diff --git a/ui-ngx/src/app/modules/home/components/rule-node/action/attributes-config.component.html b/ui-ngx/src/app/modules/home/components/rule-node/action/attributes-config.component.html
new file mode 100644
index 0000000000..258f856e91
--- /dev/null
+++ b/ui-ngx/src/app/modules/home/components/rule-node/action/attributes-config.component.html
@@ -0,0 +1,79 @@
+
+