Skip to content

Store adapter — Walmart Marketplace

The adapter object contains properties for connecting to the Walmart Marketplace API.

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

Required properties

The following adapter properties are required for Walmart Marketplace stores.

client_id

Propertyclient_id
NameClient ID
Data typestring
Required?Yes

client_secret

Propertyclient_secret
NameClient Secret
Data typestring
Required?Yes

Example

Example: create a new Walmart Marketplace 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 Marketplace Store",
  "platform": "walmart",
  "adapter": {
    "client_id": "abc123",
    "client_secret": "abc123"
  }
}
EOF

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