Store adapter — Pricefalls¶
The adapter object contains properties for connecting to the Pricefalls API.
Parent object: a store with property "platform" : "price_falls"
Required properties¶
The following adapter properties are required for Pricefalls stores.
password¶
 | Property | password | 
|---|---|
| Name | Pricefalls FTP Password | 
| Data type | string | 
| Required? | Yes | 
username¶
 | Property | username | 
|---|---|
| Name | Pricefalls FTP Username | 
| Data type | string | 
| Required? | Yes | 
Example¶
Example: create a new Pricefalls 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 Pricefalls Store",
  "platform": "price_falls",
  "adapter": {
    "username": "abc123",
    "password": "abc123"
  }
}
EOF
For details about this request type, see: Create a new store.
