Product Variation
Data Structure of Product Variation
Field | Column Type | Description | Example |
|---|---|---|---|
id |
| Product Variation's ID | 5d3594c2e95d2f000642e011 |
fields_translations | Field Translation |
| |
price | Price | NT$999,999,999 | |
price_sale | Price on Sale | NT$689 | |
member_price | Member Price | 899 | |
cost | Cost | NT$609 | |
quantity |
| Product variation's current quantity | 100 |
unlimited_quantity |
| Whether the variation has unlimited quantity or not.
| null |
media |
| Media Data | |
sku |
| Stock Keeping Unit | green_l1 |
location_id |
| Location ID | LaB123 |
variant_option_ids |
| ID of the corresponding variant options | "5d3594c2622a56618082c99f", "5d3594c2622a56618082c9a0" |
barcode |
| Barcode | |
mpn |
| Manufacturer Part Number | |
gtin |
| Barcode | |
barcode_type |
| Barcode type | Code 128/Bookland EAN/ISBN |
JSON sample
"variations": [
{
"id": "5d3594c2e95d2f000642e011",
"fields_translations": {
"en": [
"green",
"L1"
],
"zh-hant": [
"綠",
"大1"
]
},
"price": {
"cents": 999999999,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$999,999,999",
"dollars": 999999999
},
"price_sale": {
"cents": 689,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$689",
"dollars": 689
},
"member_price": {
"cents": 899,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$899",
"dollars": 899
},
"quantity": 100,
"unlimited_quantity": null,
"media": {},
"sku": "green_l1",
"location_id": "LaB123",
"variant_option_ids": [
"5d3594c2622a56618082c99f",
"5d3594c2622a56618082c9a0"
],
"barcode": null
},
{
"id": "5d3594c2e95d2f000642e012",
"fields_translations": {
"en": [
"green",
"S1"
],
"zh-hant": [
"綠",
"小1"
]
},
"price": {
"cents": 999999999,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$999,999,999",
"dollars": 999999999
},
"price_sale": {
"cents": 689,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$689",
"dollars": 689
},
"member_price": {
"cents": 0,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "",
"dollars": 0
},
"quantity": 10,
"unlimited_quantity": null,
"media": {},
"sku": "green_s1",
"location_id": null,
"variant_option_ids": [
"5d3594c2622a56618082c99f",
"5d3594c2622a56618082c9a1"
],
"barcode": null
},
{
"id": "5d3594c2e95d2f000642e013",
"fields_translations": {
"en": [
"Red",
"L1"
],
"zh-hant": [
"紅",
"大1"
]
},
"price": {
"cents": 999999999,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$999,999,999",
"dollars": 999999999
},
"price_sale": {
"cents": 689,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$689",
"dollars": 689
},
"member_price": {
"cents": 0,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "",
"dollars": 0
},
"quantity": 10,
"unlimited_quantity": null,
"media": {},
"sku": "red_l1",
"location_id": null,
"variant_option_ids": [
"5d3594c2622a56618082c9a2",
"5d3594c2622a56618082c9a0"
],
"barcode": null
},
{
"id": "5d3594c2e95d2f000642e014",
"fields_translations": {
"en": [
"Red",
"S1"
],
"zh-hant": [
"紅",
"小1"
]
},
"price": {
"cents": 0,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "",
"dollars": 0
},
"price_sale": {
"cents": 689,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "NT$689",
"dollars": 689
},
"member_price": {
"cents": 0,
"currency_symbol": "NT$",
"currency_iso": "TWD",
"label": "",
"dollars": 0
},
"quantity": 10,
"unlimited_quantity": null,
"media": {},
"sku": "red_s1",
"location_id": null,
"variant_option_ids": [
"5d3594c2622a56618082c9a2",
"5d3594c2622a56618082c9a1"
],
"barcode": null
}
],Updated 21 days ago