Skip to content

Store adapter — Skubana

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

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

Required properties

The following adapter properties are required for Skubana stores.

access_token

Propertyaccess_token
NameSkubana API Access Token
Data typestring
Required?Yes

Optional properties

The following adapter properties are optional for Skubana stores.

auto_create_missing_inventory

Propertyauto_create_missing_inventory
NameAuto Create Missing Inventory
Data typeboolean
Defaultfalse

warehouse_ids

Propertywarehouse_ids
NameWarehouse IDs
Data typearray of strings
More infoEach string is in the form:

"warehouse_id warehouse_type"

Where warehouse_type is one of:

  • DIRECT_FULFILLMENT
  • THIRD_PARTY_LOGISTICS
  • DROPSHIP_VENDOR
Example[ "1234 THIRD_PARTY_LOGISTICS", "2345 DROPSHIP_VENDOR" ]

Example

Example: create a new Skubana 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 Skubana Store",
  "platform": "skubana",
  "adapter": {
    "access_token": "abc123",
    "warehouse_ids": [ 
      "1234 THIRD_PARTY_LOGISTICS", 
      "2345 DROPSHIP_VENDOR",
      "3456 DIRECT_FULFILLMENT" 
    ],
    "auto_create_missing_inventory": false
  }
}
EOF

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