Skip to content

Store adapter — Sellbrite

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

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

Required properties

The following adapter properties are required for Sellbrite stores.

auth_token

Propertyauth_token
NameSellbrite Auth Token
Data typestring
Required?Yes

secret_key

Propertysecret_key
NameSellbrite Secret Key
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for Sellbrite stores.

warehouse_uuid

Propertywarehouse_uuid
NameWarehouse Location
DescriptionLocation for fulfillments/inventory updates
Data typestring

Example

Example: create a new Sellbrite 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 Sellbrite Store",
  "platform": "sellbrite",
  "adapter": {
    "auth_token": "abc123",
    "secret_key": "abc123",
    "warehouse_uuid": "abc123"
  }
}
EOF

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