ライトモード
List Shipping Rules
GET
/shipping/rules最終更新: 19 days ago
This endpoint allows you to fetch a list of shipping rules.
Request
None
Request samples
Response
Success(200)
HTTP Code: 200
Content Type : JSONapplication/json
データ構造
status
integer
可選
Status Code of the Shipping Rule
サンプル値:
200
success
boolean
可選
Success of the Shipping Rule
デフォルト値:
true
data
array [object {3}]
可選
id
number
可選
ID of the Shipping Rule
サンプル値:
2079537577
name
string
可選
Name of the Shipping Rule
サンプル値:
CPSAVIP
status
string
可選
Status of the Shipping Rule
サンプル値:
active
cursor
object
可選
current
integer
可選
サンプル値:
1
previous
integer | null
可選
Previous Pages Number Value
next
integer | null
可選
Next Pages Number Value
count
integer
可選
Total Number Value of the Shipping Rules
サンプル値:
1
例
{
"status": 200,
"success": true,
"data": [
{
"id": 2079537577,
"name": "CPSAVIP",
"status": "active"
}
],
"cursor": {
"current": 1,
"previous": null,
"next": null,
"count": 1
}
}
最終更新: 19 days ago