Skip to content

Store adapter — NuORDER

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

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

Required properties

The following adapter properties are required for NuORDER stores.

application

Propertyapplication
NameApplication Type
Data typestring
Accepted values
  • "wholesale"
  • "retail"
Required?Yes

consumer_key

Propertyconsumer_key
NameConsumer Key
Data typestring
Required?Yes

consumer_secret

Propertyconsumer_secret
NameConsumer Secret
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for NuORDER stores.

token

Propertytoken
NameToken
Data typestring

token_secret

Propertytoken_secret
NameToken Secret
Data typestring

Example

Example: create a new NuORDER 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 NuORDER Store",
  "platform": "nu_order",
  "adapter": {
    "application": "wholesale",
    "consumer_key": "abc123",
    "consumer_secret": "abc123",
    "token": "abc123",
    "token_secret": "abc123"
  }
}
EOF

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