Retrieve a list of product tags. The product tags can be filtered by fields such as id
or q
. The product tags can also be sorted or paginated.
Request samples
curl --location --request GET 'https://api.medusa-commerce.com/store/product-tags'
Responses
application/json {
"count": 0,
"offset": 0,
"limit": 0,
"product_tags": [
{
"id": "ptag_01G8K2MTMG9168F2B70S1TAVK3",
"value": "Pants",
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z",
"deleted_at": "2019-08-24T14:15:22Z",
"metadata": {
"car": "white"
}
}
]
}
Modified at 2024-01-06 03:57:20