Table of Contents
8.3 取消入驻申请【未授权拦截通过,待登录态联调】
PATCH /tieup/api/v1/artist-applications/{application_id}/cancel
鉴权:需要 Authorization: Bearer <access_token>。
无请求体。
路径参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
application_id |
integer | 是 | 入驻申请 ID |
响应字段:
| 字段 | 类型 | 说明 |
|---|---|---|
id |
integer | 入驻申请 ID |
user_id |
integer | 申请用户 ID |
applicant_name |
string | 申请艺名或公司名 |
name |
string | 真实姓名;历史申请未保存时为空字符串 |
phone |
string | 申请人手机号 |
wechat_no |
string/null | 申请人微信号;未填写时为 null |
social_account |
string | 用于审核的社交平台主页或账号链接 |
personal_intro |
string | 艺人个人简介;未填写时为空字符串 |
related_experience |
string | 艺人相关经历;未填写时为空字符串 |
follower_count |
integer/null | 外部平台粉丝数量,单位为万;未填写时为 null |
artist_type |
integer/null | 申请类型:1=个人艺人,2=经纪公司;提交时未选择或待后台审核补齐时为 null |
submitted_at |
string/null | 提交时间 |
status |
integer | 入驻申请状态:1=待审核,2=已通过,3=已拒绝,4=已取消 |
audit_remark |
string/null | 审核备注;取消待审核申请时为 null |
响应示例:
{
"code": 200,
"message": "成功",
"data": {
"id": 1,
"user_id": 10001,
"applicant_name": "Tieup艺人工作室",
"name": "张三",
"phone": "13800138000",
"wechat_no": "tieup_artist",
"social_account": "抖音: tieup_artist",
"personal_intro": "个人介绍",
"related_experience": "相关经历",
"follower_count": 12,
"artist_type": null,
"submitted_at": "2026-06-17 10:00:00",
"status": 4,
"audit_remark": null
}
}
说明:仅 status = 1 的申请可取消,取消后更新为 status = 4。