Table of Contents
7.6 我的提问列表【基础探测通过,待数据联调】
GET /tieup/api/v1/me/questions
鉴权:需要 Authorization: Bearer <access_token>。
查询参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
status |
integer | 否 | 提问状态筛选:1=待回答,2=已回答,3=已拒绝,4=已退款,5=已取消 |
artist_id |
integer | 否 | 偶像 ID |
响应字段:
| 字段 | 类型 | 说明 |
|---|---|---|
items |
array | 当前页数据列表 |
items[].id |
integer | 提问 ID |
items[].question_no |
string | 提问编号 |
items[].parent_question_id |
integer/null | 上一条问题 ID;主问题为空,追问指向上一条已回答问题 |
items[].root_question_id |
integer | 会话链根问题 ID |
items[].fan_user_id |
integer | 粉丝用户 ID |
items[].fan_nickname |
string | 粉丝昵称 |
items[].fan_avatar |
string | 粉丝头像 URL |
items[].artist_id |
integer | 艺人 ID |
items[].artist_user_id |
integer | 艺人关联用户 ID |
items[].artist_name |
string | 艺人名称 |
items[].artist_avatar |
string | 艺人头像,严格读取独立维护的 tieup_artist.avatar;未配置时返回空字符串,不回退绑定账号的用户头像 |
items[].business_type |
string | 业务类型:question=付费提问,follow_up_question=追问 |
items[].question_content |
string | 提问内容 |
items[].attachments |
array | 提问附件 URL/key 列表 |
items[].price_candy_amount |
string | 本次提问/追问消耗糖果数量 |
items[].answer_content |
string/null | 回答内容 |
items[].answer_attachments |
array | 回答附件 URL/key 列表 |
items[].status |
integer | 提问状态:1=待回答,2=已回答,3=已拒绝,4=已退款,5=已取消 |
items[].submitted_at |
string/null | 提交时间 |
items[].answered_at |
string/null | 回答时间 |
items[].rejected_at |
string/null | 拒绝时间 |
items[].refunded_at |
string/null | 退款时间 |
items[].reject_reason |
string/null | 拒绝原因 |
items[].refund_no |
string/null | 退款单号 |
items[].created_at |
string/null | 创建时间 |
pagination |
object | 分页信息 |
pagination.page |
integer | 当前页码 |
pagination.page_size |
integer | 每页数量 |
pagination.total |
integer | 总数量 |
pagination.next_cursor |
string/null | 游标分页预留字段,当前为空 |
响应示例:
{
"code": 200,
"message": "成功",
"data": {
"items": [
{
"id": 50001,
"question_no": "Q202606170001",
"parent_question_id": null,
"fan_user_id": 10001,
"fan_nickname": "Tieup用户",
"fan_avatar": "https://cdn.example.com/avatar.png",
"artist_id": 20001,
"artist_user_id": 20002,
"artist_name": "示例艺人",
"artist_avatar": "https://cdn.example.com/artist.png",
"business_type": "question",
"question_content": "可以分享练习建议吗?",
"attachments": [],
"price_candy_amount": "20.00",
"answer_content": null,
"answer_attachments": [],
"status": 1,
"submitted_at": "2026-06-17 10:00:00",
"answered_at": null,
"rejected_at": null,
"refunded_at": null,
"reject_reason": null,
"refund_no": null,
"created_at": "2026-06-17 10:00:00"
}
],
"pagination": {
"page": 1,
"page_size": 20,
"total": 1,
"next_cursor": null
}
}
}