Skip to content

Store adapter — ChannelAdvisor

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

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

Required properties

The following adapter properties are required for ChannelAdvisor stores.

access_token

Propertyaccess_token
NameChannelAdvisor API Token
Data typestring
Required?Yes

developer_key

Propertydeveloper_key
NameChannelAdvisor Developer Key
DescriptionDeveloper key for the DropStream ChannelAdvisor app
Data typestring
Required?Yes

password

Propertypassword
NameChannelAdvisor Password
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for ChannelAdvisor stores.

distribution_center_id

Propertydistribution_center_id
NameDistribution Center ID(s)
DescriptionOne or more Distribution Center IDs, separated by a comma, used for filtering orders in inventory updates
Data typestring
Example"id1,id2"

Example

Example: create a new ChannelAdvisor 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 ChannelAdvisor Store",
  "platform": "channel_advisor",
  "adapter": {
    "access_token": "abc123",
    "developer_key": "abc123",
    "password": "abc123",
    "distribution_center_id": "id1,id2"
  }
}
EOF

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