Skip to main content
GET
/
api
/
v1
/
shopify
/
automation-settings
Get Shopify Automation Settings
curl --request GET \
  --url https://api.sequenzy.com/api/v1/shopify/automation-settings \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "integrationId": "int_123",
  "shopDomain": "my-store.myshopify.com",
  "browseAbandonment": {
    "enabled": true,
    "delayHours": 2,
    "cooldownHours": 24
  },
  "priceDrop": {
    "enabled": true,
    "minPercent": 5,
    "lookbackDays": 30,
    "cooldownDays": 7
  }
}
Returns the effective automation settings for the company’s connected Shopify store, with platform defaults applied where the store hasn’t overridden them.

Request

No parameters.
curl "https://api.sequenzy.com/api/v1/shopify/automation-settings" \
  -H "Authorization: Bearer YOUR_API_KEY"

Responses

{
  "success": true,
  "integrationId": "int_123",
  "shopDomain": "my-store.myshopify.com",
  "browseAbandonment": {
    "enabled": true,
    "delayHours": 2,
    "cooldownHours": 24
  },
  "priceDrop": {
    "enabled": true,
    "minPercent": 5,
    "lookbackDays": 30,
    "cooldownDays": 7
  }
}