Authorization: ********************{
"course_id": 1,
"coach_id": 2,
"venue_id": 1,
"date": "2024-01-20",
"start_time": "14:00:00",
"end_time": "15:00:00",
"capacity": 12,
"price": 99
}curl --location --request POST 'http://perfit-api.test.muke.design/api/admin/course-sessions' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"course_id": 1,
"coach_id": 2,
"venue_id": 1,
"date": "2024-01-20",
"start_time": "14:00:00",
"end_time": "15:00:00",
"capacity": 12,
"price": 99
}'{
"code": 200,
"message": "排期已创建",
"data": {
"id": 120
}
}