diff --git a/commerce_opp.module b/commerce_opp.module
index b82cd67..46c9d97 100644
--- a/commerce_opp.module
+++ b/commerce_opp.module
@@ -25,6 +25,7 @@ function commerce_opp_theme() {
         'pmt_ref' => '',
         'amount' => '',
         'validity_timestamp' => NULL,
+        'sibs_payment_entity' => '',
       ],
     ],
   ];
diff --git a/src/Plugin/Commerce/PaymentGateway/CopyAndPaySibsMultibanco.php b/src/Plugin/Commerce/PaymentGateway/CopyAndPaySibsMultibanco.php
index f23da66..5c330e1 100644
--- a/src/Plugin/Commerce/PaymentGateway/CopyAndPaySibsMultibanco.php
+++ b/src/Plugin/Commerce/PaymentGateway/CopyAndPaySibsMultibanco.php
@@ -196,6 +196,7 @@ class CopyAndPaySibsMultibanco extends CopyAndPayBase implements HasPaymentInstr
         '#pmt_ref' => $payment->pmt_ref->value,
         '#amount' => $payment->getAmount(),
         '#validity_timestamp' => $payment->getExpiresTime(),
+        '#sibs_payment_entity' => $this->configuration['sibs_payment_entity'],
       ];
     }
 
diff --git a/templates/sibs-multibanco-instructions.html.twig b/templates/sibs-multibanco-instructions.html.twig
index 34fd97f..f5d662c 100644
--- a/templates/sibs-multibanco-instructions.html.twig
+++ b/templates/sibs-multibanco-instructions.html.twig
@@ -1,5 +1,6 @@
 <div{{ attributes }}>
   <p>{{ 'Here is your SIBS MULTIBANCO payment reference ID'|t }}: <strong>{{ pmt_ref }}</strong></p>
+  <p>{{ 'SIBS MULTIBANCO payment entity'|t }}: <strong>{{ sibs_payment_entity }}</strong></p>
   <p>{{ 'Amount to be paid: @amount'|t({ '@amount': amount|commerce_price_format }) }}</p>
   <p>{{ 'You have to finish your payment until @validity_time'|t({ '@validity_time': validity_timestamp|format_date('medium') }) }}</p>
 </div>
