Store adapter — Brandboom¶
The adapter
object contains properties for connecting to the Brandboom API.
Parent object: a store with property "platform" : "brand_boom"
Required properties¶
The following adapter
properties are required for Brandboom stores.
private_key
¶
Property | private_key |
---|---|
Name | API Private Key |
Data type | string |
Required? | Yes |
public_key
¶
Property | public_key |
---|---|
Name | API Public Key |
Data type | string |
Required? | Yes |
showroom_id
¶
Property | showroom_id |
---|---|
Name | Showroom ID |
Description | ID of Showroom for inventory updates |
Data type | string |
Required? | Yes |
Optional properties¶
The following adapter
properties are optional for Brandboom stores.
vanity
¶
Property | vanity |
---|---|
Name | Showroom Vanity |
Description | Limit orders only to the specified Showroom Vanity |
Data type | string |
Example¶
Example: create a new Brandboom 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 Brandboom Store",
"platform": "brand_boom",
"adapter": {
"private_key": "abc123",
"public_key": "abc123",
"showroom_id": "abc123",
"vanity": "abc123"
}
}
EOF
For details about this request type, see: Create a new store.