> For the complete documentation index, see [llms.txt](https://docs.dfinery.ai/developer-guide/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.dfinery.ai/developer-guide/platform/web/action/sms.md).

# 문자

## 유저 식별 정보 설정 <a href="#set-identity" id="set-identity"></a>

문자 발송을 위해 [유저 식별 정보](/developer-guide/platform/web/identity.md) 중 핸드폰 번호를 설정해 주세요.

{% tabs %}
{% tab title="JavaScript" %}

```javascript
Dfinery.setIdentity(DFIdentity.PHONE_NO, "821012345678");
```

{% endtab %}

{% tab title="TypeScript" %}

```typescript
import Dfinery, { DFIdentity } from "@igaworks/dfinery-web-sdk";

void Dfinery.setIdentity(DFIdentity.PHONE_NO, "821012345678");
```

{% endtab %}
{% endtabs %}

{% hint style="warning" %}
전화번호의 경우 다음과 같은 형식으로 입력해주시기를 바랍니다. ex) 821012345678, 82212345678
{% endhint %}
