- Welcome 👋
- Get Started
- Create Your First App
- Authorization
- Webhooks
- Conditional Webhooks
- Security Considerations
- Multi-Language Support
- Responses
- Pagination
- Rate Limiting
- Versioning
- Change Log
- Support
- APIs
- Orders
- Order Status
- Order Histories
- Order Tags
- Order Invoice
- Order Reservations
- Order Items
- Products
- Product Options
- Product Quantity
- Product Variants
- Product Tags
- Product Images
- Product Option Values
- Abandoned Carts
- Customer Groups
- Customers
- Digitals Product
- Categories
- Exports
- Shipments
- Shipping Companies
- Shipping Zones
- Shipping Rules
- Countries
- Product Option Templates
- Taxes
- Coupons
- Affiliates
- Order Assignment
- Special Offers
- Transactions
- Payments
- Settlements
- Settings
- Merchant
- Brands
- Reviews
- Branches
- Currencies
- SEO
- Cities
- DNS Records
- Languages
- Employees
- Advertisements
- Webhooks
- Custom URLs
- Loyalty Points
- Webhooks - Store Events
List Shipping Rules
Production
Production
GET
https://api.salla.dev/admin/v2/shipping/rules
Shipping Rules
Last modified:2025-01-20 07:25:03
Scopes
shipping.read
- Shipping Read OnlyRequest
Authorization
Add the parameter
Authorization
to Headers,whose value is to concatenate the Token after the Bearer.Example:
Authorization: Bearer ********************
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.salla.dev/admin/v2/shipping/rules'
Responses
🟢200Success
application/json
Body
status
integerÂ
optional
Example:
200
success
booleanÂ
optional
Default:
true
data
array[object (ShippingRules) {3}]Â
optional
id
numberÂ
optional
Example:
2079537577
name
stringÂ
optional
Example:
CPSAVIP
status
stringÂ
optional
Example:
active
cursor
objectÂ
optional
current
integerÂ
optional
Example:
1
previous
integer  | nullÂ
optional
next
integer  | nullÂ
optional
count
integerÂ
optional
Example:
1
Example
{
"status": 200,
"success": true,
"data": [
{
"id": 2079537577,
"name": "CPSAVIP",
"status": "active"
}
],
"cursor": {
"current": 1,
"previous": 0,
"next": 1,
"count": 1
}
}
🟠401Unauthorized
Modified at 2025-01-20 07:25:03