Add allocated token verification permission. The token is placed in the Authorization field of the header, and permission verification is performed when requesting the interface.
Request Parameters
Parameter Name
Description
Example/Default Value
since_id
Initial product_id, used for pagination, each page queries data with product_id > since_id and sorts in ascending order
{
"id": "Required, the unique identifier of the product",
"title": "Required, the product title",
"vendor": "Required, the name of the product supplier",
"product_type": "Required, the type of product",
"created_at": "Required, the creation time of the product, in ISO 8601 format",
"updated_at": "Required, the update time of the product, in ISO 8601 format",
"published_at": "Required, the publication time of the product, in ISO 8601 format",
"handle": "Required, the URL handle of the product (used to generate friendly URLs)",
"status": "Required, the status of the product (e.g., ACTIVE)",
"tags": "Required, a list of product tags; if none, it should be an empty array",
"body_html": "Required, the HTML description content of the product",
"media": [
{
"id": "Required, the unique identifier of the media resource",
"url": "Required, the preview image URL of the media resource"
}
],
"variants": [
{
"id": "Required, the unique identifier of the product variant",
"currency_code": "Required, the currency code (e.g., USD)",
"price": "Required, the price of the product variant, as a string",
"compare_at_price": "Required, the original price of the product variant (used to show discounts), as a string",
"image": {
"url": "Required, the image URL of the product variant"
},
"sku": "Required, the SKU (Stock Keeping Unit) of the product variant",
"title": "Required, the title of the product variant (e.g., 450G, 1KG, etc.)",
"created_at": "Required, the creation time of the product variant, in ISO 8601 format",
"updated_at": "Required, the update time of the product variant, in ISO 8601 format",
"barcode": "Required, the barcode of the product variant",
"inventory_quantity": "Required, the inventory quantity of the product variant, as a number",
"position": "Required, the sorting position of the product variant, as a number",
"inventory_item": {
"id": "Required, the unique identifier of the inventory item",
"unit_cost": {
"currency_code": "Required, the currency code (e.g., USD)",
"amount": "Required, the unit cost amount, as a string"
},
"created_at": "Required, the creation time of the inventory item, in ISO 8601 format",
"updated_at": "Required, the update time of the inventory item, in ISO 8601 format"
}
}
]
}