> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequenzy.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Get Sync Rules

> Get the company's effective sync rules

Returns the sync rules currently in effect: the automatic tag changes applied
when events fire. Companies use the platform defaults until custom rules are
saved; `isDefault` reports which set is active.

## Request

No parameters.

```bash theme={null}
curl "https://api.sequenzy.com/api/v1/sync-rules" \
  -H "Authorization: Bearer YOUR_API_KEY"
```

## Responses

<ResponseExample>
  ```json 200 theme={null}
  {
    "success": true,
    "syncRules": [
      {
        "triggerEvent": "ecommerce.order_placed",
        "actions": {
          "addTags": ["ecommerce.customer"],
          "removeTags": ["ecommerce.in_cart", "ecommerce.in_checkout"]
        }
      }
    ],
    "isDefault": true
  }
  ```

  ```json 401 theme={null}
  {
    "success": false,
    "error": "Unauthorized"
  }
  ```
</ResponseExample>
