Skip to content

Store adapter — TrueCommerce Nexternal

The adapter object contains properties for connecting to the TrueCommerce Nexternal API.

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

Required properties

The following adapter properties are required for TrueCommerce Nexternal stores.

account_name

Propertyaccount_name
NameNexternal Account Name
Data typestring
Required?Yes

active_key

Propertyactive_key
NameNexternal Active API Key
Data typestring
Required?Yes

Example

Example: create a new TrueCommerce Nexternal 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 Nexternal Store",
  "platform": "nexternal",
  "adapter": {
    "account_name": "abc123",
    "active_key": "abc123"
  }
}
EOF

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