> For the complete documentation index, see [llms.txt](https://docs.hackle.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.hackle.io/en/development-guide/sdk/user-identifier/crm-subscription.md).

# CRM Properties

The Hackle SDK manages properties used for CRM separately.

CRM properties are not stored on the client and are stored securely only on the server.

## Phone Number Management

{% hint style="info" %}
If you have already collected phone numbers of existing subscribers, consider [bulk import](/en/crm-marketing/crm-properties/collect-phone-number.md#import).
{% endhint %}

You can collect phone numbers for receiving text messages and KakaoTalk messages.

## Subscription Consent Management

The Hackle SDK manages separate properties to track each user's CRM Marketing message subscription consent status.

CRM Marketing messages provided by Hackle include the following:

* Push Message
* Kakao Message
* Text Message / SMS

### Message Purpose Classification

Subscription consent status can be managed differently per message purpose.

* Promotional
* Informational

{% hint style="warning" %}
Additional message classifications for special purposes beyond Promotional and Informational will be added in the future.
{% endhint %}

### Message Subscription Consent Status

<table><thead><tr><th width="215.3671875">HackleSubscriptionStatus</th><th>Description</th></tr></thead><tbody><tr><td><code>UNKNOWN</code></td><td>Has not subscribed or unsubscribed. <em><strong>(default)</strong></em></td></tr><tr><td><code>SUBSCRIPTION</code></td><td>Explicitly subscribed</td></tr><tr><td><code>UNSUBSCRIPTION</code></td><td>Explicitly unsubscribed</td></tr></tbody></table>

{% hint style="danger" %}
**When a user is newly created, the subscription consent status is UNKNOWN.**

You can send messages to users by subscription consent status in the Hackle Dashboard.

* Target users who have explicitly subscribed (SUBSCRIPTION)
* Target users who can receive messages (UNKNOWN + SUBSCRIPTION)
  {% endhint %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.hackle.io/en/development-guide/sdk/user-identifier/crm-subscription.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
