Merchant Information Report

Description

Provides basic merchant information including merchant name, merchant number, banking information, daily cutoff times and parent account information if applicable.

Report Parameters

Name

Type

Max. Length

Required

Description

MID

string

10

 

Company Number

Example Request

/EpnPublic/ActiveReports/GetReport.aspx?&Token={YourToken}&Action=Report&OutputType=XML&ReportPermDesc=MerchantInformation&Parameter_MID={MID}

SDK Example

string token = Token.GetToken("{MerchantNumber}", "{MerchantPassword}");
Console.WriteLine(token);
//Set parameters for report
D.ReportDefinition.Parameter[] reportParams = new D.ReportDefinition.Parameter[]
{
  new D.ReportDefinition.Parameter { PermDesc = "MID", ParamValue = "{MerchantNumber}" }
};
//Run report
Response resp = GetReport.RunReport(token, "MerchantInformation", reportParams,
D.ReportDefinition.OutputType.HTML);
Console.WriteLine(resp.I.SData);