---
name: "unbindUnlockMethod"
mode: "api"
versionRequirements:
  - { name: "@ray-js/lock-sdk", version: "1.0.0" }
title: "unbindUnlockMethod - Unbind user's unlock method."
summary: "Unbind user's unlock method."
---

## unbindUnlockMethod

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

### Description

Unbind the user's unlocking method

### Parameters

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

### Return Value

Type: `Promise<void>`

None (resolve after successful unbinding)

### Error Codes

| Error Code | Error Message |
| --- | --- |
| `1050` | The unlocking method is not associated and cannot be unbound |

### Examples

#### Example

```ts
import { unbindUnlockMethod } from '@ray-js/lock-sdk';
await unbindUnlockMethod({ id: 'method_001' });
```
