Skip to content

Store adapter — Ordoro

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

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

Required properties

The following adapter properties are required for Ordoro stores.

email

Propertyemail
NameOrdoro Account Email Address
Data typestring
Required?Yes

password

Propertypassword
NameOrdoro Account Password
Data typestring
Required?Yes

warehouse_id

Propertywarehouse_id
NameWarehouse ID
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for Ordoro stores.

api_version

Propertyapi_version
NameAPI Version
Data typestring
Accepted values
  • "2"
  • "3"
Default"2"

import_status

Propertyimport_status
NameImport Status
DescriptionOnly orders with the specified status will be imported
Data typestring
Accepted values
  • "in_process"
  • "new"
  • "all"
Default"in_process"

import_tag

Propertyimport_tag
NameImport Tag
DescriptionOnly orders with the specified tag are imported
Data typestring

notify_cart

Propertynotify_cart
NameNotify Cart
Data typeboolean
Defaulttrue

Example

Example: create a new Ordoro 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 Ordoro Store",
  "platform": "ordoro",
  "adapter": {
    "email": "abc123",
    "password": "abc123",
    "warehouse_id": "abc123",
    "import_tag": "abc123",
    "api_version": "2",
    "import_status": "in_process",
    "notify_cart": true
  }
}
EOF

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