cancel
Showing results for 
Search instead for 
Did you mean: 

AuthorizationRequest Merchant Email

I'm using the .net SDK, using the AuthorizationRequest to send in transactions.  How do I add an additional merchant email address, can't seem to find that property.

 

var request = new AuthorizationRequest(model.CreditCardNumber, model.CreditCardExpirationMonth + model.CreditCardExpirationYear, totalCharged,
string.Format("Cart GUID: {0} - website transaction", cartGuid), true)
{
City = model.CartViewModel.BillToCity,
Company = model.CartViewModel.BillToCompany,
Country = model.CartViewModel.BillToCountry,
FirstName = model.CartViewModel.BillToFirstName,
LastName = model.CartViewModel.BillToLastName,
Phone = model.CartViewModel.BillToPhone,
Address = model.CartViewModel.BillToAddress1,
State = model.CartViewModel.BillToState,
Zip = model.CartViewModel.BillToZip,
CardCode = model.CreditCardCCV
};

tjb32
Member
2 REPLIES 2

The merchant email address is set on the merchant account. Not sure if you can set more than one or not, might need to send your own email if not.

RaynorC1emen7
Expert

Doing it the old way, of using new System.Collections.Specialized.NameValueCollection I would have done it like so:

 

inputObject.Add("x_merchant_email", SalesRepEmail);