---
sourceType: official-guide
sourceTypeMatchedRule: fallback
slug: OA/quan-ly/quan-ly-thong-tin-nguoi-dung/go-nhan-nguoi-dung
title: Gỡ nhãn người dùng
---
# Gỡ nhãn người dùng

:::warning Lưu ý
Ứng dụng cần được cấp quyền quản lý thông tin OA
:::
## HTTP request

- **URL**: [https://openapi.zalo.me/v2.0/oa/tag/rmfollowerfromtag](https://openapi.zalo.me/v2.0/oa/tag/rmfollowerfromtag)
- **Method**: POST  
- **Content Type**: application/json  
- **Response Type**: text/json

## Example request

```bash
curl \
-X POST \
-H "Content-Type: application/json" \
-H 'access_token: <your_access_token>' \
-d '{
"user_id": 2468458835296197922,
"tag_name": "Khách hàng mua lần đầu"
}' "https://openapi.zalo.me/v2.0/oa/tag/rmfollowerfromtag"
```

### Tham số header


| Tham số | Kiểu dữ liệu | Tính bắt buộc | Mô tả |
| --- | --- | --- | --- |
| access_token | string | yes | Token cho phép ứng dụng đại diện OA gọi API. |


### Cấu trúc body của request


| Tham số | Kiểu dữ liệu | Tính bắt buộc | Mô tả |
| --- | --- | --- | --- |
| user_id | long | yes | ID của người dùng cần gỡ nhãn. |
| tag_name | string | yes | Tên của nhãn cần gỡ. |


## Example respond

```json
{
    "error":0,
    "message": "Success"
}
```
