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
¶
Property | auth_token |
---|---|
Name | Sellbrite Auth Token |
Data type | string |
Required? | Yes |
secret_key
¶
Property | secret_key |
---|---|
Name | Sellbrite Secret Key |
Data type | string |
Required? | Yes |
Optional properties¶
The following adapter
properties are optional for Sellbrite stores.
warehouse_uuid
¶
Property | warehouse_uuid |
---|---|
Name | Warehouse Location |
Description | Location for fulfillments/inventory updates |
Data type | string |
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.