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
¶
Property | access_token |
---|---|
Name | Etsy Access Token |
Data type | string |
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.