Table of Contents
6.5 取消关注偶像【未授权拦截通过,待登录态联调】
DELETE /tieup/api/v1/artists/{artist_id}/follow
鉴权:需要 Authorization: Bearer <access_token>。
路径参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
artist_id |
integer | 是 | 艺人 ID |
响应字段:
| 字段 | 类型 | 说明 |
|---|---|---|
artist_id |
integer | 艺人 ID |
is_followed |
integer | 固定返回 2,表示未关注 |
followed_at |
string/null | 最近关注时间;从未关注过时为空 |
unfollowed_at |
string/null | 最近取消关注时间 |
响应示例:
{
"code": 200,
"message": "成功",
"data": {
"artist_id": 20001,
"is_followed": 2,
"followed_at": "2026-06-22 10:00:00",
"unfollowed_at": "2026-06-22 10:10:00"
}
}
说明:取消关注只调整 tieup_artist_follow.status = 2,不影响订阅、IM 超级群成员、历史订单或粉丝权益;重复取消关注保持幂等。