注文ステータスの一覧
GET /statuses
登録された注文ステータスの一覧を取得するには、/api/statusesエンドポイントにGETリクエストを送信します。
リクエスト:ヘッダー
Name
Value
Content-Type
application/json
Authorization
Basic <認証情報>
クエリ パラメータ
Name
Type
説明
デフォルト値
page
integer
ページ番号
1
items_per_page
integer
1ページあたりの表示数
10
レスポンス
{
"statuses": [
{
"status_id": "6",
"status": "B",
"type": "O",
"is_default": "Y",
"position": "0",
"description": "入荷待ち",
"email_subj": ": 商品入荷待ちのお知らせ",
"email_header": "承りましたご注文は現在商品入荷待ちの状態です。入荷まで今しばらくお待ちください。",
"lang_code": "ja",
"params": {
"allow_return": "N",
"repay": "Y",
"notify": "Y",
"gift_cert_status": "C",
"inventory": "I",
"color": "#28abf6",
"remove_cc_info": "Y",
"notify_department": "Y"
}
},
{
"status_id": "7",
"status": "I",
"type": "O",
"is_default": "Y",
"position": "0",
"description": "キャンセル",
"email_subj": ": 注文キャンセルのお知らせ",
"email_header": "ご注文はキャンセルされました。詳細につきましてはお手数ですがショップ管理者までご連絡をお願いいたします。",
"lang_code": "ja",
"params": {
"allow_return": "N",
"inventory": "I",
"repay": "Y",
"gift_cert_status": "C",
"notify": "Y",
"color": "#c2c2c2",
"remove_cc_info": "Y",
"notify_department": "Y"
}
}
],
"params": {
"items_per_page": "10",
"page": 1,
"total_items": 8
}
}{}最終更新