Syntch Gateway API

<back to all web services

GetMerchantProcessingConfigurations

Merchant Information (BETA)
Requires Authentication
Required role:Merchant
The following routes are available for this service:
GET/merchants/{merchantKey}/processing-detailsBETA VERSION (Subject to change). Gets processing details for the merchant key provided.
GetMerchantProcessingConfigurations Parameters:
NameParameterData TypeRequiredDescription
MerchantKeypathintegerYesThe key of the merchant.
MerchantProcessingConfiguration Parameters:
NameParameterData TypeRequiredDescription
MerchantKeymodelintNoThe gateway identifier of the merchant.
IsCreditEnabledmodelboolNoIndicates if the merchant is configured for Credit processing.
IsCheckEnabledmodelboolNoIndicates if the merchant is configured for Check processing.
IsDebitEnabledmodelboolNoIndicates if the merchant is configured for Debit processing.
IsEbtEnabledmodelboolNoIndicates if the merchant is configured for EBT processing.
CanSettlemodelboolNoIndicates if the merchant has one or more processor profiles that are eligible for manual settlement.
AutoSettlementTimemodelDateTime?NoThe merchant's auto settlement time.
ProcessingConfigurationsmodelList<ProcessingConfiguration>NoA list of the merchant's processor configurations.
ProcessingConfiguration Parameters:
NameParameterData TypeRequiredDescription
ProcessormodelstringNoThe name of the processor.
MIDmodelstringNoThe merchant identifier for the processor.
IsCreditEnabledmodelboolNoIndicates if the merchant is configured for Credit processing.
IsCheckEnabledmodelboolNoIndicates if the merchant is configured for Check processing.
IsDebitEnabledmodelboolNoIndicates if the merchant is configured for Debit processing.
IsEbtEnabledmodelboolNoIndicates if the merchant is configured for EBT processing.
CanSettlemodelboolNoIndicates if the merchant's processor profile is eligible for manual settlement.
AutoSettlementTimemodelDateTimeNoThe merchant's auto settlement time.

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

GET /merchants/{merchantKey}/processing-details HTTP/1.1 
Host: syntch.simpay.net 
Accept: text/csv
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"MerchantKey":0,"IsCreditEnabled":false,"IsCheckEnabled":false,"IsDebitEnabled":false,"IsEbtEnabled":false,"CanSettle":false,"AutoSettlementTime":"0001-01-01T00:00:00.0000000","ProcessingConfigurations":[{"Processor":"String","MID":"String","IsCreditEnabled":false,"IsCheckEnabled":false,"IsDebitEnabled":false,"IsEbtEnabled":false,"CanSettle":false,"AutoSettlementTime":"0001-01-01T00:00:00.0000000"}]}