Get Gifts
Breaking ChangesJul. 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 |
| Gift ID | 5b3d860559d52419850001bc |
status |
| Gift's Status
| active |
title_translations | Title Translations | "en": "gift", | |
sku |
| Stock Keeping Unit | gift_a |
quantity |
| Current Quantity | 20 |
cost | Cost of Gift | NT$20 | |
weight |
| Weight of Gift (kg) | 1 |
medias | Media Data | ||
updated_at |
| Updated Time | 2018-07-05T02:44:59.596+00:00 |
created_at |
| Created Time | 2018-07-05T02:44:21.073+00:00 |
unlimited_quantity |
| Whether the quantity is unlimited | false |
variations |
| Product Variations Data Note: beta 測試中,僅開放部分店家使用,如無法使用功能請聯絡客服窗口 | |
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}'Updated 21 days ago