SessionRecurrenceGroups
Create a new SessionRecurrenceGroup
This endpoint creates a new SessionRecurrenceGroup for a SessionType.
post/shop/recurrence-groups
Request body
Example request
{
"name": "Mondays with Adrienne",
"weekdays": [
"monday"
],
"start_time": "16:00",
"start_times": [
{
"value": "12:00"
}
],
"capacity": 12,
"recurrence_start": "2021-04-10",
"recurrence_end": "2021-05-10"
}Response
The recurrence group was successfully created.
Example response
{
"data": {
"capacity": 12,
"id": "609bd745e4358066f7061d82",
"name": "Mondays with Adrienne",
"practitioner": {
"id": "5dcb47800000000000000000",
"name": "Jane Doe"
},
"recurrence_end": "2021-05-10",
"recurrence_start": "2021-04-10",
"room": {
"id": "5dcb47800000000000000000"
},
"start_time": "16:00",
"start_times": [
{
"value": "16:00"
}
],
"weekdays": [
"monday"
]
}
}