Store adapter — Walmart Drop Ship Vendor¶
The adapter
object contains properties for connecting to the Walmart Drop Ship Vendor API.
Parent object: a store with property "platform" : "walmart_drop_ship_vendor"
Required properties¶
The following adapter
properties are required for Walmart Drop Ship Vendor stores.
consumer_channel_type
¶
Property | consumer_channel_type |
---|---|
Name | Consumer Channel Type |
Data type | string |
Required? | Yes |
consumer_id
¶
Property | consumer_id |
---|---|
Name | Walmart Consumer ID |
Data type | string |
Required? | Yes |
private_key
¶
Property | private_key |
---|---|
Name | Walmart Private Key |
Data type | string |
Required? | Yes |
ship_node
¶
Property | ship_node |
---|---|
Name | Walmart Ship Node |
Data type | string |
Required? | Yes |
Example¶
Example: create a new Walmart Drop Ship Vendor 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 Walmart Drop Ship Vendor Store",
"platform": "walmart_drop_ship_vendor",
"adapter": {
"consumer_id": "abc123",
"consumer_channel_type": "abc123",
"private_key": "abc123",
"ship_node": "abc123"
}
}
EOF
For details about this request type, see: Create a new store.