Configuring Merchant Pricing
The 'Merchant Pricing' API is designed to facilitate the management of pricing templates and pricing plans for each onboarding merchant. Xplor Pay offers a streamlined solution to manage these plans and help merchants streamline their pricing strategy.
Customizable Pricing Plans: With Xplor Pay, merchants can easily create and manage tailored pricing structures, including transaction fees, service charges, and other cost factors to fit the specific needs of each account.
Transparent and Competitive Rates: Pricing structures are designed to align with the merchant’s business model, ensuring clarity and offering competitive rates tailored to their needs. Using Xplor Pay's templates, merchants can configure plans that meet their operational requirements.
This endpoint utilizes both POST and PUT methods, enabling users to create a new pricing plan or update existing plans efficiently.
POST
https - /api/pricing/v2/PricingPlan/{merchantNumber}
PUT
https - /api/pricing/v2/PricingPlan/{merchantNumber}/{id}
{
"pricingFees": [
{
"clearentPricingFeeID": 101,
"pricingFeeDescription": "Transaction Processing Fee",
"rate": 2.9,
"fee": 0.30,
"payInMonth1": 10.00,
"payInMonth2": 10.00
},
{
"clearentPricingFeeID": 102,
"pricingFeeDescription": "Monthly Service Fee",
"rate": 0.0,
"fee": 25.00,
"payInMonth1": 25.00,
"payInMonth2": 25.00
}
],
"pricingPlanID": 5001,
"pricingPlanTemplateID": 3002,
"merchantNumber": "1234567890123456",
"discountQualificationRangeID": 2,
"signatureDebitDiscountQualificationRangeID": 3,
"pricingTypeCode": "INTERCHANGE_PLUS",
"isAdvancedPricing": true,
"isEMF": true,
"isDailySettle": true,
"includeAssessments": true,
"effectiveStartDateTimeUTC": "2024-03-01T00:00:00Z",
"effectiveEndDateTimeUTC": "2025-03-01T00:00:00Z"
}
For a detailed breakdown of the request and response fields and their descriptions, refer to the reference documentation of Pricing Plan API.
Last updated
Was this helpful?