We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7eabd24 commit c2ad200Copy full SHA for c2ad200
crates/router/src/connector/aci/transformers.rs
@@ -203,7 +203,9 @@ impl
203
bank_account_iban: None,
204
billing_country: Some(country.to_owned()),
205
merchant_customer_id: Some(Secret::new(item.get_customer_id()?)),
206
- merchant_transaction_id: Some(Secret::new(item.payment_id.clone())),
+ merchant_transaction_id: Some(Secret::new(
207
+ item.connector_request_reference_id.clone(),
208
+ )),
209
customer_email: None,
210
}))
211
}
0 commit comments