123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- {
- "store": {
- "currencies": ["eur"]
- },
- "users": [
- {
- "email": "admin@medusa-test.com",
- "password": "supersecret"
- }
- ],
- "regions": [
- {
- "id": "test-region",
- "name": "Default Region",
- "currency_code": "eur",
- "tax_rate": 0,
- "payment_providers": ["manual"],
- "fulfillment_providers": ["manual"],
- "countries": ["gb", "de", "dk", "se", "fr", "es", "it"]
- }
- ],
- "shipping_options": [
- {
- "name": "Standard Shipping",
- "region_id": "test-region",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "amount": 1000
- }
- ],
- "products": [
- {
- "title": "Basic T-Shirt",
- "subtitle": null,
- "description": "Reimagine the feeling of a classic T-shirt. With our men's Basic cotton T-shirts, everyday essentials no longer have to be ordinary.",
- "handle": "basic-shirt",
- "is_giftcard": false,
- "images": [],
- "thumbnail": "https://medusa-public-images.s3.eu-west-1.amazonaws.com/tshirt.png",
- "options": [
- {
- "title": "Size"
- }
- ],
- "variants": [
- {
- "title": "S",
- "prices": [
- {
- "currency_code": "eur",
- "amount": 1950
- }
- ],
- "options": [
- {
- "value": "S"
- }
- ],
- "inventory_quantity": 100,
- "manage_inventory": true
- },
- {
- "title": "M",
- "prices": [
- {
- "currency_code": "eur",
- "amount": 1950
- }
- ],
- "options": [
- {
- "value": "M"
- }
- ],
- "inventory_quantity": 100,
- "manage_inventory": true
- },
- {
- "title": "L",
- "prices": [
- {
- "currency_code": "eur",
- "amount": 1950
- }
- ],
- "options": [
- {
- "value": "L"
- }
- ],
- "inventory_quantity": 100,
- "manage_inventory": true
- },
- {
- "title": "XL",
- "prices": [
- {
- "currency_code": "eur",
- "amount": 1950
- }
- ],
- "options": [
- {
- "value": "XL"
- }
- ],
- "inventory_quantity": 100,
- "manage_inventory": true
- }
- ]
- }
- ]
- }
|