{
"id": 1,
"title": "更新后的任务标题",
"description": "更新后的描述",
"commission_amount": 60,
"total_quota": 200,
"status": 1,
"is_hot": 1,
"sort_order": 150
}curl --location --request PUT '/admin/v1/mission/tasks' \
--header 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE3NzgxMjA5NTYsImlhdCI6MTc3NTUyODk1NiwianRpIjoiZjYwZWI0YWMtNDg3NS00MzM4LThkZGUtMGI2ZTFjZjFhOGZhIiwidXNlcl9pZCI6MzF9.hTIJI1W90s0ABGjpIjwLUWAQmSi9-OFh_KvgUotfSP4' \
--header 'Content-Type: application/json' \
--data-raw '{
"id": 1,
"title": "更新后的任务标题",
"description": "更新后的描述",
"commission_amount": 60,
"total_quota": 200,
"status": 1,
"is_hot": 1,
"sort_order": 150
}'{
"code": 200,
"message": "success",
"data": {
"id": 1,
"task_no": "TASK202401141000010001",
"title": "更新后的任务标题",
"commission_amount": 60,
"total_quota": 200,
"status": 1,
"updated_at": "2024-01-14T11:00:00Z"
}
}