Create a fee

Save Fee Rule

POST https://workspace.myeshopbox.com/payments/api/v1/fee

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API.

Request Body

NameTypeDescription

isInclusiveTax

string

Fees is Tax inclusive or not. Refer Enum: 1, 0

portalId

string

Unique Id for a portal (Ex. Amazon, Flipkart)

feeId

string

Unique Id for fee created or Unique Id for already present fee

feeName

string

Name of the created fees

actualName

string

Receivable fee Name from portal

inclusiveTaxPercentage

string

Percentage of tax applicable on a fee

validFrom

string

Date from which fees will be activated :linkFees

validTo

string

Date at which fees will be expired

fee

array

Detail of when is the fee charged

feeRules

object

Detail of fee rules

{
 "accountId": "28",
 "version": "1.0",
 "portalId": "1",
 "feeId": "179",
 "feeName": "flipkartFees",
 "isInclusiveTax": "1",
 "inclusiveTaxPercentage": 3.0,
 "fee": [
  {
   "eventType": "cancelled",
   "eventSubType": "",
   "partialPercentageValue": 0.0,
   "feeCharged": "CHARGED_FEE"
  }
 ],
 "validFrom": "2020-03-01T00:00:00.000Z",
 "validTo": "2020-03-26T00:00:00.000Z",
 "feeRules": [
  {
   "details": {
    "feeRulesStatus": "lower",
    "paymentMethod": "Prepaid",
    "shippingZone": "Regional"
   },
   "feeRanges": [
    {
     "rangeType": "product selling price",
     "rangeTypeUnit": "INR",
     "minRange": 23.0,
     "maxRange": 45.0
    }
   ],
   "feeValues": [
    {
     "type": "variable",
     "value": 2.0,
     "applicableOn": "Per Shipment",
     "partitionRange": 4.0,
     "partitionRangeType": "kg"
    },
    {
     "type": "fixed",
     "value": 3.0,
     "applicableOn": "Per Order Item"
    }
   ]
  }
 ],
 "feeRuleConditionId": "5e733f75a675f200013f6181",
 "feePortalId": "1210",
 "actualName": "acb"
}
curl -X POST https://workspace.myeshopbox.com/payments/api/v1/fee \
-H "Content-Type: application/json" \
-H "Authorization: Bearer XXXX" \
-d $'{
    "portalId": 2,
    "feeId": "1",
    "feeName": "",
    "isInclusiveTax": "0",
    "inclusiveTaxPercentage": "11",
    "chargedFee": "cancelled",
    "chargedFeeCases": "",
    "courierReturnedFee": "",
    "courierReturnedPercent": "",
    "customerReturnedFee": "",
    "customerReturnedPercent": "",
    "fee": [
        {
            "eventType": "cancelled",
            "eventSubType": "",
            "feeCharged": "CHARGED_FEE"
        }
    ],
    "feeRules": [
        {
            "details": {},
            "feeRanges": [
                {
                    "rangeType": "product selling price",
                    "rangeTypeUnit": "INR",
                    "minRange": 0,
                    "maxRange": 100
                }
            ],
            "feeValues": [
                {
                    "type": "fixed",
                    "partitionRangeType": null,
                    "value": 12,
                    "applicableOn": "Per Order",
                    "partitionRange": null
                }
            ]
        }
    ],
    "validFrom": "2019-09-01T00:00:00.000Z",
    "feePortalId": "145",
    "validityPeriod": "definite",
    "ruleId": "5d7f2b78ad0cf200017cebbb"
}'

Last updated