Xóa thông tin người dùng
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
- Method: POST
- Content Type: application/json
- Response Type: text/json
Example request
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ả |
|---|---|---|---|
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. |
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
{
"error": 0,
"message": "Success"
}