Lấy thông tin chi tiết hồ sơ (profile) của một người quan tâm OA.
Request Information
Link Request API (METHOD POST):
https://api.abenla.com/zbs/oa/followers/detail
Information Request
URI Parameters
None.
Request Body Parameters
| Name | Description | Type |
|---|---|---|
| brand_name |
Tên thương hiệu OA. |
string |
| user_id |
User ID của người dùng cần lấy thông tin. |
string |
| login_name |
Tên tài khoản đăng nhập hoặc định danh người dùng API. |
string |
| sign |
Chữ ký bảo mật (hash MD5) dùng để xác thực tính toàn vẹn của yêu cầu. View More |
string |
Request Formats
application/json, text/json, text/html
Sample:
{
"brand_name": "Abenla",
"user_id": "12345678910111213",
"login_name": "ABL1234",
"sign": "691a5659131a04e0a831472e7a4ba33b"
}
Response Information
Resource Description
| Name | Description | Type |
|---|---|---|
| data |
Dữ liệu chi tiết profile người dùng. |
OAFollowerDataResponse |
| code |
Mã lỗi trả về từ hệ thống (enum). |
ErrorCode |
| message |
Thông điệp lỗi hoặc mô tả phản hồi. |
string |
Response Formats
application/json, text/json, text/html
Sample:
{
"data": {
"user_id": "12345678910111213",
"display_name": "Nguyen Van A",
"avatar": "https://s160-ava-talk.zadn.vn/6/2/e/f/2/160/fddcf69116975230d506b9f7fad56003.jpg",
"user_last_interaction_date": "2026-06-07",
"user_is_follower": true,
"tag_names": [
"HCM",
"VIP"
],
"shared_info": {
"address": "01 Điện Biên Phủ",
"city": "Hồ Chí Minh",
"name": "Nguyen Van A"
}
},
"code": 106,
"message": "Success"
}