Get a Fee

Get by Fee Name

GET https://workspace.myeshopbox.com/payments/api/v1/fee?feeName=:feeName

Query Parameters

NameTypeDescription

feeName

string

Fees Name for which details are required

Headers

NameTypeDescription

Authorization

string

The Bearer token to grant access to the API.

{
 "data": [
  {
   "portalId": "2",
   "portalName": "Amazon",
   "feesName": "Commission Fees",
   "validFrom": "2019-11-26T00:00:00.000Z",
   "validTo": null,
   "status": "active",
   "updatedOn": null,
   "feePortalId": "431",
   "details": null,
   "version": "1.0",
   "feeEventMappingDetail": null,
   "feePortalMappingDetail": null,
   "feeId": "78",
   "isDefault": "NO",
   "isEditable": "YES",
   "isInclusiveTax": null,
   "inclusiveTaxPercentage": null,
   "createdOn": null,
   "portalLogoUrl": "https://storage.googleapis.com/eshopbox_wms_uploads/logo/amazon.png",
   "actualName": "Commission Fees"
  },
  {
   "portalId": "1",
   "portalName": "Flipkart",
   "feesName": "Commission Fees",
   "validFrom": "2019-11-20T00:00:00.000Z",
   "validTo": null,
   "status": "active",
   "updatedOn": null,
   "feePortalId": "430",
   "details": null,
   "version": "1.0",
   "feeEventMappingDetail": null,
   "feePortalMappingDetail": null,
   "feeId": "77",
   "isDefault": "NO",
   "isEditable": "YES",
   "isInclusiveTax": null,
   "inclusiveTaxPercentage": null,
   "createdOn": null,
   "portalLogoUrl": "https://storage.googleapis.com/eshopbox_wms_uploads/logo/flipkart.png",
   "actualName": "Commission Fees"
  }
 ],
 "total": "2",
 "page": 0,
 "per_page": 50
}
curl -X GET https://workspace.myeshopbox.com/payments/api/v1/fee?feeName=:feeName \
-H "Authorization: Bearer XXXX" \

Last updated