---
name: "sendVerifyCode"
mode: "api"
versionRequirements:
  - { name: "@ray-js/lock-sdk", version: "1.0.0" }
title: "sendVerifyCode - Send mobile verification code."
summary: "Send mobile verification code."
---

## sendVerifyCode

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

### Description

Send SMS verification code

### Parameters

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `account` | `string` | Yes | Recipient phone number in international format, e.g., Mainland China: 86-13800138000 |

### Return Value

Type: `Promise<void>`

None (resolve after successful sending)

### Examples

#### Example

```ts
import { sendVerifyCode } from '@ray-js/lock-sdk';
await sendVerifyCode({ account: '86-13800138000' });
```
