---
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

`Params`

| Parameter | Type | Required | Description |
| --- | --- | --- | --- |
| `params` | `SendVerifyCodeParams` | Yes | Send parameters (account: recipient phone number in international format, e.g., Mainland China: 86-13800138000) |

### Return Value

Type: `Promise<void>`

None (resolve after successful sending)

### Referenced Types

##### `interface` SendVerifyCodeParams

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


### Examples

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