---
sourceType: official-guide
sourceTypeMatchedRule: fallback
slug: OA/quan-ly/quan-ly-thong-tin-nguoi-dung/xoa-thong-tin-nguoi-dung
title: Xóa thông tin người dùng
---
# Xóa thông tin người dùng 

:::warning Lưu ý
API hỗ trợ xóa thông tin của người dùng mà OA lưu trữ. Thay đổi chỉ áp dụng với thông tin lưu trữ ở phía OA và không làm thay đổi thông tin tài khoản Zalo của người dùng.
:::
## HTTP request

- **URL**: [https://openapi.zalo.me/v2.0/oa/deletefollowerinfo](https://openapi.zalo.me/v2.0/oa/deletefollowerinfo)
- **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": "2512523625412515"
}' "https://openapi.zalo.me/v2.0/oa/deletefollowerinfo"
```

### Tham số header


| Tham số | Kiểu dữ liệu | Tính bắt buộc | Mô tả |
| --- | --- | --- | --- |
| [access_token](/docs/OA/bat-dau/xac-thuc-va-uy-quyen-cho-ung-dung-new) | string | yes | Token cho phép ứng dụng đại diện OA gọi API. Xem chi tiết cách lấy access token [tại đây](/docs/OA/bat-dau/xac-thuc-va-uy-quyen-cho-ung-dung-new). |


### 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 | string | yes | ID của người dùng |


## Example respond

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