> ## 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.vibrateShort

> Trigger a short device vibration.

Use this API to trigger a relatively short period of vibration (40 ms) on the device.

## Parameters

| Property | Type     | Required | Description                                                                                                                                                                                                                     |
| -------- | -------- | -------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| type     | String   | No       | Level of device vibration intensity. If the current device does not support setting the vibration level, the default intensity (`light`) is used, and no error is triggered. Valid values: `heavy`, `medium`, `light` (default) |
| 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.vibrateShort({
  success: () => {
    console.log('Short vibration triggered');
  }
});
```

## Related APIs

<CardGroup cols={2}>
  <Card title="my.vibrate" icon="mobile" href="/jsapi/device/vibrate/my.vibrate">
    General vibration
  </Card>

  <Card title="my.vibrateLong" icon="mobile" href="/jsapi/device/vibrate/my.vibrateLong">
    Long vibration
  </Card>
</CardGroup>
