# 9 Shop
# 1 Shop List
# 1.1 Get Shop List (GET)
Retrieve the list of shops bound to / created under the current account.
# URL
https://developers.cjdropshipping.com/api2.0/v1/shop/getShops
# CURL
curl --location --request GET 'https://developers.cjdropshipping.com/api2.0/v1/shop/getShops' \
--header 'CJ-Access-Token: xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx'
# Rate Limit
No explicit rate-limit annotation; gateway default quota applies.
# Request Parameters
None (the account id is injected from the login session).
# Return
success
{
"code": 200,
"result": true,
"message": "Success",
"data": [
{
"id": "1424608189734850560",
"createDate": "2024-01-01 12:00:00",
"name": "MyShop",
"status": 1,
"type": "shopify",
"updateDate": "2024-06-01 12:00:00",
"individuationNum": "001",
"fulfillmentStatus": "auto",
"shopifyPodSettings": "{}",
"marketplace": "us",
"aliasName": "Alias",
"syncInventory": 1,
"syncInventoryRate": 100,
"isCb": 0,
"trackUrlTemplate": "https://example.com/track/{number}",
"emailNotification": 1,
"email": "user@example.com",
"countryCode": "US",
"storeCountry": "United States",
"platformLogoUrl": "https://example.com/logo.png",
"currencyCode": "USD",
"businessType": 1,
"deliveryProfileOpen": 1,
"haveDeliveryProfileScopes": 1,
"deliveryProfileSpecifiedShop": 1,
"deliveryProfileNewShop": 0
}
],
"requestId": "ae543fd1-cdd7-4a61-974a-1340fea678c6"
}
| Field | Definition | Type | Length | Note |
|---|---|---|---|---|
| id | Shop id | string | 50 | |
| createDate | Create time | string | 30 | |
| name | Shop name | string | 200 | |
| status | Shop status | int | 5 | Store status: 0=Deleted, 1=Authorized, 2=Deactivated, 3=Authorization failed, 4=Authorization expired, 5=In transition |
| type | Shop type / platform | string | 50 | Referer Platforms |
| updateDate | Update time | string | 30 | |
| individuationNum | Individuation no. | string | 50 | |
| fulfillmentStatus | Fulfillment status | string | 50 | |
| shopifyPodSettings | Shopify POD settings | string | - | JSON string |
| marketplace | Marketplace | string | 50 | |
| aliasName | Alias name | string | 200 | |
| syncInventory | Sync inventory flag | int | 1 | 1/0 |
| syncInventoryRate | Inventory sync rate | int | 5 | percent |
| isCb | Cross-border flag | int | 1 | 1/0 |
| trackUrlTemplate | Tracking URL template | string | 500 | |
| emailNotification | Email notification flag | int | 1 | 1/0 |
| Notification email | string | 200 | ||
| countryCode | Country code | string | 20 | |
| storeCountry | Store country | string | 100 | |
| platformLogoUrl | Platform logo | string | 500 | |
| currencyCode | Currency code | string | 10 | |
| businessType | Business type | int | 5 | |
| deliveryProfileOpen | Delivery profile open flag | int | 1 | 1/0 |
| haveDeliveryProfileScopes | Has delivery profile scopes flag | int | 1 | 1/0 |
| deliveryProfileSpecifiedShop | Delivery profile specified shop | int | 1 | 1/0 |
| deliveryProfileNewShop | Delivery profile new shop flag | int | 1 | 1/0 |