Skip to content

Store adapter — Orderwave

The adapter object contains properties for connecting to the Orderwave API.

Parent object: a store with property "platform" : "orderwave"

Required properties

The following adapter properties are required for Orderwave stores.

account_code

Propertyaccount_code
NameOrderwave Account Code
Data typestring
Required?Yes

password

Propertypassword
NameOrderwave FTP Password
Data typestring
Required?Yes

username

Propertyusername
NameOrderwave FTP Username
Data typestring
Required?Yes

Example

Example: create a new Orderwave 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 Orderwave Store",
  "platform": "orderwave",
  "adapter": {
    "username": "abc123",
    "password": "abc123",
    "account_code": "abc123"
  }
}
EOF

For details about this request type, see: Create a new store.