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
¶
Property | account_name |
---|---|
Name | Nexternal Account Name |
Data type | string |
Required? | Yes |
active_key
¶
Property | active_key |
---|---|
Name | Nexternal Active API Key |
Data type | string |
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.