Files

23 lines
509 B
Plaintext
Raw Permalink Normal View History

2026-06-11 19:03:29 +02:00
# Tests if timetable can be created
# Create timetable
POST http://localhost/wordpress/wp-json/reservations/v1/timetable
{
"name": "Test Timetable"
}
HTTP 200
[Captures]
object_id: jsonpath "$"
POST http://localhost/wordpress/wp-json/reservations/v1/timetable/{{object_id}}/capacity
{
"capacity": 2,
"min_lead_time_minutes": 60,
"date": "2025-1-1",
"start_time": "8:00",
"end_time": "12:00",
"repeat_period_in_days": 7,
"repeat_times": 0,
"requires_confirmation": true
}