TABLE OF CONTENTS
- Add the Seller's Rate Card
- Retrieve the Seller's Rate Card
- Update the Seller's Rate Card
- RateCard Object
- RateCard Samples
Add the Seller's Rate Card
Note this call has to be made in order for the seller to become active for payment processing.
POST v1/payment/{mid}/ratecard
Request Parameters
The merchant id of the seller that a rate card is being generated for.
Request Body
A RateCard object containing the variable and fix fee information you want associated with this seller.
Sample Request
POST https://sandX-api.acmeticketing.net/v1/payment/987-654-321/ratecard
Response
The resulting RateCard object.
Retrieve the Seller's Rate Card
GET v1/payment/{mid}/ratecard
Request Parameters
The merchant id of the seller that a rate card is being generated for.
Sample Request
GET https://sandX-api.acmeticketing.net/v1/payment/987-654-321/ratecard
Response
The requested RateCard object.
Update the Seller's Rate Card
PUT v1/payment/{mid}/ratecard
Request Parameters
The merchant id of the seller that a rate card is being generated for.
Request Body
A RateCard object containing the variable and fix fee information you want associated with this seller. To remove a percentage or additional amount leave it out of the payload.
Sample Request
PUT https://sandX-api.acmeticketing.net/v1/payment/987-654-321/ratecard
Response
The resulting RateCard object.
RateCard Object
Name | Type | Description | Required |
percentageFee | number | The percentage fee that is subtracted from each payment to the seller's account. | Either percentageFee or fixedFee is Required. |
fixedFee | number | A fixed amount of money that is subtracted from each transaction before payment is deposited into the seller's account. Fraction of a penny is not supported. | Either percentageFee or fixedFee is Required. |
RateCard Samples
Rate card of 3% plus a 30 cents per transaction fixed fee
{
"percentageFee": 3,
"fixedFee" : 0.30
}
Rate card of 2.75% with no per transaction fixed fee.
{ "percentageFee": 2.75 }
Rate card of $50 fixed fee with no percent of the transaction.
{ "fixedFee": 50 }