Response
Success
If a “Create Store” request was successfully received, the store - in any status - will be returned with a 200 response code, along the store’s status and settings.
Merchant’s can access their store once the status is “active”. At this point, an email for account verification should have been received by them.
Provisioning store example (not ready for login):
```json
{
"data": {
"id": "1520270098436",
"status": "provisioning",
"plan_sku": "STORE-TRIAL-15DAY",
"store_name": "Pflugerville Coop"
"country": "US",
"account_id": "e818f592-5b73-4ba8-b14c-fc9d8cfb1453",
"store_launched": false
},
"meta": {}
}
```
Allocating store example (not ready for login):
```json
{
"data": {
"id": "1520270098436",
"status": "allocating",
"plan_sku": "STORE-TRIAL-15DAY",
"store_name": "Pflugerville Coop"
"store_hash": "lhv58otl0w",
"primary_hostname": "pflugerville-coop.store.bcdev",
"canonical_hostname": "store-lhv58otl0w.store.bcdev",
"country": "US",
"expires_at": "2018-03-20T17:17:58Z",
"account_id": "e818f592-5b73-4ba8-b14c-fc9d8cfb1453",
"store_launched": false
},
"meta": {}
}
```
Active store example (ready for login):
```json
{
"data": {
"id": "1520270098436",
"status": "active",
"plan_sku": "STORE-TRIAL-15DAY",
"store_name": "Pflugerville Coop"
"store_hash": "lhv58otl0w",
"primary_hostname": "pflugerville-coop.store.bcdev",
"canonical_hostname": "store-lhv58otl0w.store.bcdev",
"country": "US",
"allocated_at": "2018-03-05T17:18:33Z",
"expires_at": "2018-03-20T17:17:58Z",
"account_id": "e818f592-5b73-4ba8-b14c-fc9d8cfb1453",
"store_launched": false
},
"meta": {}
}
```