Get Gifts

🚧

Breaking Changes

Jul. 30, 2025 拿取商品相關資訊 API 異動公告 Products related API Breaking Change

Function

To get detailed information of gifts.
撈取贈品的詳細資訊

URL

GET <<api_domain>>/v1/gifts

Response Fields

Field

Column Type

Description

Example

id

String

Gift ID
贈品ID

5b3d860559d52419850001bc

status

String

Gift's Status
贈品狀態

  • Status allows:

    • active上架

    • draft 下架

active

title_translations

Translation

Title Translations
贈品名稱

"en": "gift",
"zh-hant": "贈品"

sku

String

Stock Keeping Unit
贈品貨號

gift_a

quantity

Number

Current Quantity
贈品目前庫存

20

cost

Money

Cost of Gift
贈品成本

NT$20

weight

Float

Weight of Gift (kg)
贈品重量 (公斤重)

1

medias

Media

Media Data
媒體(照片)資訊

updated_at

DateTime

Updated Time
贈品更新時間

2018-07-05T02:44:59.596+00:00

created_at

DateTime

Created Time
贈品創造時間

2018-07-05T02:44:21.073+00:00

unlimited_quantity

Boolean

Whether the quantity is unlimited
庫存是否無限

false

variations

Array

Product Variations Data
商品規格資訊

Note: beta 測試中,僅開放部分店家使用,如無法使用功能請聯絡客服窗口

variations example

pagination

Pagination

Pagination Data
頁面資訊

Please check the link on the left


Response Example

{
    "items": [
        {
            "id": "5b3d860559d52419850001bc",
            "status": "active",
            "title_translations": {
                "en": "gift",
                "zh-hant": "贈品"
            },
            "sku": "gift_a",
            "quantity": 20,
            "cost": {
                "cents": 20,
                "currency_symbol": "NT$",
                "currency_iso": "TWD",
                "label": "NT$20",
                "dollars": 20
            },
            "weight": 1,
            "medias": [
                {
                    "images": {
                        "original": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "landscape": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "source": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/source.png?1530758644"
                        },
                        "thumb": {
                            "width": 200,
                            "height": 200,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/thumb.png?1530758644"
                        },
                        "medium": {
                            "width": 250,
                            "height": 250,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/medium.png?1530758644"
                        },
                        "large": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/large.png?1530758644"
                        },
                        "xlarge": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/xlarge.png?1530758644"
                        },
                        "favicon_small": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "favicon": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "favicon_large": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "transparent_thumb": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "transparent_medium": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "transparent_large": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        },
                        "transparent_xlarge": {
                            "width": 400,
                            "height": 400,
                            "url": "https://img.shoplineapp.com/media/image_clips/5b3d85f64e22a6b4ff004f72/original.png?1530758644"
                        }
                    },
                    "_id": "5b3d85f64e22a6b4ff004f72",
                    "alt_translations": {}
                }
            ],
            "updated_at": "2018-07-05T02:44:59.596+00:00",
            "created_at": "2018-07-05T02:44:21.073+00:00",
            "unlimited_quantity": false,
        }
    ],
    "pagination": {
        "current_page": 1,
        "per_page": 24,
        "total_pages": 1,
        "total_count": 1
    }
}

Sample Request

curl --location --request GET '<<api_domain>>/v1/gifts?per_page=50&page=1' \
--header 'Accept: application/json' \
--header 'Authorization: Bearer ${token}'