- Store API
- Admin API
- Auth
- Batch Jobs
- Currencies
- Customers
- Customer Groups
- Discounts
- Draft Orders
- Gift Cards
- Inventory Items
- Invites
- Notes
- Notifications
- Orders
- Create a Reservation
- Cancel Claim's Fulfillment
- Ship a Claim's Fulfillment
- Cancel Swap's Fulfilmment
- Get Order Reservations
- Add a Shipping Method
- Create a Refund
- Get an Order
- Update an Order
- Create a Fulfillment
- Cancel a Swap
- List Orders
- Create a Swap
- Complete an Order
- Create a Swap Fulfillment
- Cancel a Claim
- Process a Swap Payment
- Ship a Fulfillment
- Capture an Order's Payments
- Archive Order
- Update a Claim
- Request a Return
- Create a Claim Fulfillment
- Ship a Swap's Fulfillment
- Cancel a Fulfilmment
- Create a Claim
- Cancel an Order
- Order Edits
- Payments
- Payment Collections
- Product Collections
- Product Tags
- Product Types
- Product Variants
- Price Lists
- Products
- Product Categories
- Publishable Api Keys
- Reservations
- Regions
- Return Reasons
- Returns
- Sales Channels
- Shipping Options
- Shipping Profiles
- Stock Locations
- Store
- Swaps
- Uploads
- Tax Rates
- Users
- 【Demo】Products
List Shipping Options
GET
/admin/shipping-options
Admin API/Shipping OptionsShipping Options
region_id
or is_return
.Request
Query Params
region_id
string
optional
is_return
string
optional
admin_only
string
optional
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 '/admin/shipping-options'
Responses
🟢200OK
application/json
Body
count
integer
required
offset
integer
required
limit
integer
required
shipping_options
array[object (Shipping Option) {19}]
required
id
string
required
Example:
so_01G1G5V27GYX4QXNARRQCW1N8T
name
string
required
Example:
PostFake Standard
region_id
string
required
Example:
reg_01G1G5V26T9H8Y0M4JNE3YGA4G
region
object | null
optional
profile_id
string
required
Example:
sp_01G1G5V239ENSZ5MV4JAR737BM
provider_id
string
required
Example:
manual
amount
integer | null
required
flat_rate
.Example:
200
is_return
boolean
required
Default:
false
admin_only
boolean
required
Default:
false
includes_tax
boolean
optional
Default:
false
created_at
string <date-time>
required
updated_at
string <date-time>
required
deleted_at
string <date-time> | null
required
price_type
enum<string>
required
flat_rate
for fixed prices or calculated
if the Fulfillment Provider can provide price calulations.Allowed values:
flat_ratecalculated
Example:
flat_rate
data
object
required
Example:
{}
metadata
object | null
required
Example:
{"car":"white"}
provider
object (Fulfillment Provider)
optional
requirements
array[object (Shipping Option Requirement) {6}]
optional
profile
object (Shipping Profile)
optional
gift_card
groups together the shipping options that can only be used for gift cards.Example
{
"count": 0,
"offset": 0,
"limit": 0,
"shipping_options": [
{
"id": "so_01G1G5V27GYX4QXNARRQCW1N8T",
"name": "PostFake Standard",
"region_id": "reg_01G1G5V26T9H8Y0M4JNE3YGA4G",
"region": {},
"profile_id": "sp_01G1G5V239ENSZ5MV4JAR737BM",
"provider_id": "manual",
"amount": 200,
"is_return": false,
"admin_only": false,
"includes_tax": false,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"price_type": "flat_rate",
"data": {},
"metadata": {
"car": "white"
},
"provider": {
"id": "manual",
"is_installed": true
},
"requirements": [
{
"id": "sor_01G1G5V29AB4CTNDRFSRWSRKWD",
"shipping_option_id": "so_01G1G5V27GYX4QXNARRQCW1N8T",
"shipping_option": {},
"amount": 100,
"deleted_at": "2019-08-24T14:15:22Z",
"type": "min_subtotal"
}
],
"profile": {
"id": "sp_01G1G5V239ENSZ5MV4JAR737BM",
"name": "Default Shipping Profile",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"type": "default",
"products": [
{}
],
"shipping_options": [
{}
],
"metadata": {
"car": "white"
}
}
}
]
}
🟠400Client Error or Multiple Errors
🟠401User is not authorized. Must log in first
🟠404Not Found Error
🟠409Invalid State Error
🟠422Invalid Request Error
🔴500Server Error
Modified at 2024-05-23 07:10:14