Store adapter — Sellercloud¶
The adapter
object contains properties for connecting to the Sellercloud API.
Parent object: a store with property "platform" : "seller_cloud"
Required properties¶
The following adapter
properties are required for Sellercloud stores.
password
¶
Property | password |
---|---|
Name | Sellercloud Password |
Data type | string |
Required? | Yes |
server_id
¶
Property | server_id |
---|---|
Name | Sellercloud Server ID |
Data type | string |
Required? | Yes |
username
¶
Property | username |
---|---|
Name | Sellercloud Username |
Data type | string |
Required? | Yes |
Optional properties¶
The following adapter
properties are optional for Sellercloud stores.
order_import_params
¶
Property | order_import_params |
---|---|
Name | Order Import Status |
Description | One or more order statuses.
|
Data type | array of strings |
Default | null |
Example | [ "abc123", "bcd234" ] |
warehouse_name
¶
Property | warehouse_name |
---|---|
Name | Warehouse Name |
Data type | string |
Example¶
Example: create a new Sellercloud store
curl -X POST \
-H "Authorization: Bearer $JWT_TOKEN" \
-H "Content-Type: application/json" \
https://api.getdropstream.com/stores \
-d @- <<EOF
{ "customer_id": "3775",
"name": "Your Sellercloud Store",
"platform": "seller_cloud",
"adapter": {
"username": "abc123",
"password": "abc123",
"server_id": "abc123",
"warehouse_name": "abc123",
"order_import_params": [ "abc123", "bcd234" ]
}
}
EOF
For details about this request type, see: Create a new store.