Skip to content

Store adapter — Etsy

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

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

Optional properties

The following adapter properties are optional for Etsy stores.

access_token

Propertyaccess_token
NameEtsy Access Token
Data typestring

Example

Example: create a new Etsy 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 Etsy Store",
  "platform": "etsy",
  "adapter": {
    "access_token": "abc123"
  }
}
EOF

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