Skip to content

Store adapter — eBay

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

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

Required properties

The following adapter properties are required for eBay stores.

app_id

Propertyapp_id
NameApp ID
Data typestring
Required?Yes

auth_token

Propertyauth_token
NameAuth token
Data typestring
Required?Yes

cert_id

Propertycert_id
NameCert ID
Data typestring
Required?Yes

dev_id

Propertydev_id
NameDeveloper ID
Data typestring
Required?Yes

ru_name

Propertyru_name
NameRu_Name
Data typestring
Required?Yes

user_id

Propertyuser_id
NameeBay User ID
Data typestring
Required?Yes

Example

Example: create a new eBay 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 eBay Store",
  "platform": "ebay",
  "adapter": {
    "user_id": "abc123",
    "auth_token": "abc123",
    "dev_id": "abc123",
    "app_id": "abc123",
    "cert_id": "abc123",
    "ru_name": "abc123"
  }
}
EOF

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