---
name: "removeTempOnlineUnlimited"
mode: "api"
versionRequirements:
  - { name: "@ray-js/lock-sdk", version: "1.0.0" }
title: "removeTempOnlineUnlimited - Delete an online unlimited password, applicable to WiFi Photo Lock devices."
summary: "Delete an online unlimited password, applicable to WiFi Photo Lock devices."
---

## removeTempOnlineUnlimited

> [VERSION] @ray-js/lock-sdk >= 1.0.0

> 💡 This API is for WiFi Pro locks only; do not use it with other locks.

### Description

Delete an online unlimited-use password

### Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `id` | `string` | Yes | Record ID |

### Return Value

Type: `Promise<void>`

None (resolves after successful deletion)

### Examples

#### Example

```ts
import { removeTempOnlineUnlimited } from '@ray-js/lock-sdk';
removeTempOnlineUnlimited('pwd_001');
```
