123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- {
- "store": {
- "currencies": [
- "eur",
- "usd"
- ]
- },
- "users": [],
- "regions": [
- {
- "id": "test-region-eu",
- "name": "EU",
- "currency_code": "eur",
- "tax_rate": 0,
- "payment_providers": [
- "manual"
- ],
- "fulfillment_providers": [
- "manual"
- ],
- "countries": [
- "gb",
- "de",
- "dk",
- "se",
- "fr",
- "es",
- "it"
- ]
- },
- {
- "id": "test-region-na",
- "name": "NA",
- "currency_code": "usd",
- "tax_rate": 0,
- "payment_providers": [
- "manual"
- ],
- "fulfillment_providers": [
- "manual"
- ],
- "countries": [
- "us",
- "ca"
- ]
- }
- ],
- "shipping_options": [
- {
- "name": "PostFake Standard",
- "region_id": "test-region-eu",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "amount": 1000
- },
- {
- "name": "PostFake Express",
- "region_id": "test-region-eu",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "amount": 1500
- },
- {
- "name": "PostFake Return",
- "region_id": "test-region-eu",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "is_return": true,
- "amount": 1000
- },
- {
- "name": "I want to return it myself",
- "region_id": "test-region-eu",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "is_return": true,
- "amount": 0
- },
- {
- "name": "FakeEx Standard",
- "region_id": "test-region-na",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "amount": 800
- },
- {
- "name": "FakeEx Express",
- "region_id": "test-region-na",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "amount": 1200
- },
- {
- "name": "FakeEx Return",
- "region_id": "test-region-na",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "is_return": true,
- "amount": 800
- },
- {
- "name": "I want to return it myself",
- "region_id": "test-region-na",
- "provider_id": "manual",
- "data": {
- "id": "manual-fulfillment"
- },
- "price_type": "flat_rate",
- "is_return": true,
- "amount": 0
- }
- ],
- "products": [],
- "categories": [],
- "publishable_api_keys": [
- {
- "title": "Development"
- }
- ]
- }
|