Correct some responses

This commit is contained in:
rui hildt 2020-05-04 18:19:35 +02:00
parent 8f1947344d
commit 0202b3af88
1 changed files with 14 additions and 16 deletions

View File

@ -92,8 +92,8 @@ A json object for the account to register with `id` and any of `username`, `emai
```
{
"earliest_time": "08:30 AM",
"latest_time": "08:00 PM"
"earliest_time": "08:30",
"latest_time": "20:00"
}
```
@ -412,8 +412,8 @@ A json object for the participant to add with **`account_id`**, **`meeting_id`**
{
"account_id": 5,
"meeting_id": "f86983db-955e-43b8-be3e-bc92bbeb9b43",
"earliest_time": "08:30 AM",
"latest_time": "08:00 PM",
"earliest_time": "08:30",
"latest_time": "20:00",
"quorum": 0,
"mandatory": 1,
"host": 0,
@ -428,18 +428,16 @@ A json object for the participant with `id`, `account_id`, `meeting_id`, `earlie
```
{
"data": {
"id": 23,
"account_id": 5,
"meeting_id": "f86983db-955e-43b8-be3e-bc92bbeb9b43",
"earliest_time": "08:30 AM",
"latest_time": "08:00 PM",
"quorum": 0,
"mandatory": 1,
"host": 0,
"answered": 0,
"timezone": "Europe/Brussels"
}
"id": 23,
"account_id": 5,
"meeting_id": "f86983db-955e-43b8-be3e-bc92bbeb9b43",
"earliest_time": "08:30",
"latest_time": "20:00",
"quorum": 0,
"mandatory": 1,
"host": 0,
"answered": 0,
"timezone": "Europe/Brussels"
}
```