v1

latestOpenAPI 3.0.02026-07-26318168886.7 KB
Delivery Options

Update Delivery Option(Store Pickup)'s Store Information

To update a delivery option(store pickup)'s store information.<br>更新一個為什門市自取的送貨方式的門市資訊。

put/delivery_options/{id}/stores_info

Path parameters

idstring required

Delivery Option ID<br>物流方式ID

Request body

Example request

{
  "store_pickup_option": {
    "config_fields": {
      "en": [
        {
          "level_1": "City",
          "level_2": "Region",
          "level_3": "Street"
        }
      ],
      "zh-hant": [
        {
          "level_1": "城市",
          "level_2": "地區",
          "level_3": "街道"
        }
      ]
    }
  },
  "addresses": [
    {
      "level_1_translations": {
        "en": "Hong Kong",
        "zh-hant": "香港"
      },
      "level_2_translations": {
        "en": "Hong Kong Island",
        "zh-hant": "香港島"
      },
      "level_3_translations": {
        "en": "Sheung Wan",
        "zh-hant": "上環"
      },
      "store_name_translations": {
        "en": "SHOPLINE",
        "zh-hant": "商線"
      },
      "store_address_translations": {
        "en": "21F, 148 Wing Lok St, Sheung Wan",
        "zh-hant": "上環永樂街148號21樓"
      },
      "instruction_translations": {
        "en": "Business hours:Monday to Friday 10AM to 7PM",
        "zh-hant": "營業時間:週一至週五 10AM-7PM"
      }
    }
  ]
}

Response

OK

errorsstring[]

Example response

{
  "delivery_option": {
    "id": "58d25b6201cda3475300002b",
    "status": "active",
    "name_translations": {
      "zh-hant": "面交取貨"
    },
    "fee_type": "flat",
    "region_type": "custom",
    "delivery_type": "custom",
    "excluded_payment_ids": [
      "5de88dbdce10df002ad927e0"
    ],
    "config_data": {
      "excluded_dates": [
        "2021/01/31"
      ],
      "specific_delivery_time_translations": {
        "en": "09:00AM - 12:00 PM",
        "zh-hant": "上午09:00 - 下午12:00"
      }
    },
    "supported_countries": [
      "TW"
    ],
    "delivery_rates": [
      {
        "countries": [
          "CN",
          "HK"
        ],
        "rate_limit": -1,
        "fee": {
          "cents": 0,
          "currency_symbol": "HK$",
          "currency_iso": "HKD",
          "label": "",
          "dollars": 0
        }
      }
    ],
    "store_pickup_option": {
      "config_option": {
        "dropdown_fields_v2": {
          "en": [
            {
              "field": "level_1",
              "label": "City"
            },
            {
              "field": "level_2",
              "label": "Region"
            },
            {
              "field": "level_3",
              "label": "Street"
            }
          ],
          "zh-hant": [
            {
              "field": "level_1",
              "label": "城市"
            },
            {
              "field": "level_2",
              "label": "地區"
            },
            {
              "field": "level_3",
              "label": "街道"
            }
          ]
        },
        "level_fields": [
          "level_1",
          "level_2",
          "level_3"
        ]
      },
      "addresses": [
        {
          "name_translations": {
            "en": "Hong Kong",
            "zh-hant": "香港"
          },
          "level": "level_1",
          "next_level": [
            {
              "name_translations": {
                "en": "Hong Kong Island",
                "zh-hant": "香港島"
              },
              "level": "level_2",
              "next_level": [
                {
                  "name_translations": {
                    "en": "Sheung Wan",
                    "zh-hant": "上環"
                  },
                  "level": "level_3",
                  "next_level": [
                    {
                      "level": "store",
                      "store_name": {
                        "en": "SHOPLINE",
                        "zh-hant": "商線"
                      },
                      "store_address": {
                        "en": "21F, 148 Wing Lok St, Sheung Wan",
                        "zh-hant": "上環永樂街148號21樓"
                      },
                      "instruction": {
                        "en": "Business hours:Monday to Friday 10AM to 7PM",
                        "zh-hant": "營業時間:週一至週五 10AM-7PM"
                      }
                    }
                  ]
                }
              ]
            }
          ]
        }
      ]
    }
  },
  "errors": [
    "addresses[440].instruction_translations is unmatch with merchant's supported languages [\\\"en\\\", \\\"zh-hant\\\"]"
  ]
}