Skip to content

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

Propertypassword
NameSellercloud Password
Data typestring
Required?Yes

server_id

Propertyserver_id
NameSellercloud Server ID
Data typestring
Required?Yes

username

Propertyusername
NameSellercloud Username
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for Sellercloud stores.

order_import_params

Propertyorder_import_params
NameOrder Import Status
DescriptionOne or more order statuses.
  • If specified, only orders with the specified status(es) are imported
  • If unspecified (the default), all orders are imported regardless of status
Data typearray of strings
Defaultnull
Example[ "abc123", "bcd234" ]

warehouse_name

Propertywarehouse_name
NameWarehouse Name
Data typestring

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.