Shipping rates define the delivery cost charged to customers based on their province and the order currency. Each rate is uniquely identified by the combination ofDocumentation Index
Fetch the complete documentation index at: https://mintlify.com/ItsJhonAlex/Ecommerce/llms.txt
Use this file to discover all available pages before exploring further.
province and currency — you cannot have two active rates for the same province in the same currency. Admin staff manage these via the API or the dashboard. Rates can be deactivated without deletion, which is useful during regional coverage changes or pricing reviews.
All endpoints in this section require the
admin or staff role. Requests without a valid session return 401; requests with insufficient role return 403.Endpoints
List Shipping Rates
200
Create Shipping Rate
(province, currency) combination must be unique — attempting to create a duplicate returns a database unique constraint error.
Request Body
Name of the Venezuelan province or state (e.g.
"Miranda", "Caracas", "Zulia"). Must match the values used in customer address forms.ISO 4217 currency code for this rate (e.g.
"USD", "VES"). Must match the currencies available in your product prices.Shipping cost in minor currency units (e.g.
500 = $5.00 USD, 250000 = 2500.00 VES).Whether this rate is immediately available for checkout. Defaults to
true if omitted.201
Update Shipping Rate
Updated province name.
Updated ISO 4217 currency code.
Updated shipping cost in minor units.
Set to
false to disable the rate without deleting it, or true to re-enable it.200
404 if the rate ID does not exist.
Delete Shipping Rate
404 if the rate ID does not exist.