curl --request POST \
--url https://api.klavis.ai/sandbox/woocommerce/{sandbox_id}/initialize \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"products": [
{
"name": "[Sandbox] Premium Quality Tee",
"type": "simple",
"regular_price": "29.99",
"description": "A high quality t-shirt for testing purposes.",
"short_description": "Test Tee",
"status": "publish",
"manage_stock": false
},
{
"name": "[Sandbox] Cool Hoodie",
"type": "simple",
"regular_price": "59.99",
"description": "Warm and cozy hoodie.",
"short_description": "Hoodie",
"status": "publish",
"manage_stock": false
}
],
"customers": [
{
"email": "john.doe@example.com",
"first_name": "John",
"last_name": "Doe",
"username": "johndoe",
"billing": {
"first_name": "John",
"last_name": "Doe",
"company": "",
"address_1": "969 Market",
"address_2": "",
"city": "San Francisco",
"state": "CA",
"postcode": "94103",
"country": "US",
"email": "john.doe@example.com",
"phone": "(555) 555-5555"
},
"shipping": {
"first_name": "John",
"last_name": "Doe",
"company": "",
"address_1": "969 Market",
"address_2": "",
"city": "San Francisco",
"state": "CA",
"postcode": "94103",
"country": "US"
}
}
],
"orders": [
{
"customer_index": 0,
"status": "processing",
"payment_method": "bacs",
"payment_method_title": "Direct Bank Transfer",
"line_items": [
{
"product_index": 0,
"quantity": 2
},
{
"product_index": 1,
"quantity": 1
}
]
}
]
}
'