curl --request PATCH \
--url https://api.pandabase.io/v2/core/stores/{storeId}/products/{productId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"title": "<string>",
"subtitle": "<string>",
"description": "<string>",
"productType": "SUBSCRIPTION",
"price": 1,
"compareAtPrice": 1,
"images": [
"<string>"
],
"message": "<string>",
"inStock": true,
"fulfillmentMode": "MANAGED_LICENSE",
"pricingModel": "STANDARD",
"status": "DRAFT",
"minimumPrice": 1,
"maxPerCustomer": 2,
"availableFrom": "2023-11-07T05:31:56Z",
"availableUntil": "2023-11-07T05:31:56Z",
"downloadUrl": "<string>",
"redirectUrl": "<string>",
"keyFormat": "ALPHANUMERIC",
"customPrefix": "<string>",
"maxActivations": 2,
"licenseDuration": "THIRTY_DAYS",
"revokeOnRefund": true,
"lowStockThreshold": 1,
"webhookUrl": "<string>",
"webhookSecret": "<string>",
"billingInterval": "WEEKLY",
"billingAnchor": "IMMEDIATELY",
"trialDays": 1,
"licenseKeys": [
"<string>"
],
"variants": [
{
"id": "<string>",
"title": "<string>",
"slug": "<string>",
"description": "<string>",
"sku": "<string>",
"options": "<unknown>",
"price": 1,
"compareAtPrice": 1,
"images": [
"<string>"
],
"inStock": true,
"quantity": 1,
"trackStock": true,
"position": 1
}
],
"options": [
{
"name": "<string>",
"values": [
"<string>"
],
"position": 1
}
],
"categoryIds": [
"<string>"
]
}
'