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

# my.startPullDownRefresh

> Trigger pull-down refresh programmatically.

Use this API to start the pull-down refresh animation and trigger the `onPullDownRefresh` event.

## Parameters

| Property | Type     | Required | Description                   |
| -------- | -------- | -------- | ----------------------------- |
| success  | Function | No       | Callback on success           |
| fail     | Function | No       | Callback on failure           |
| complete | Function | No       | Callback that always executes |

## Code Example

```javascript theme={null}
my.startPullDownRefresh({
  success() {
    console.log('Pull down refresh started');
  }
});
```

## Related APIs

<CardGroup cols={2}>
  <Card title="my.stopPullDownRefresh" icon="xmark" href="/jsapi/ui/pulldown/my.stopPullDownRefresh">
    Stop pull-down refresh
  </Card>
</CardGroup>
