Add status code to responses

This commit is contained in:
rui hildt 2020-03-23 18:02:50 +01:00
parent d0a8c17089
commit 8f6dab9cae
1 changed files with 33 additions and 20 deletions

View File

@ -36,12 +36,15 @@ A json object for the registered user with `id`, `username`, `email`, `timezone`
```
{
"id": 1,
"username": "jean",
"email": "jean@example.com",
"timezone": "Europe/Brussels",
"earliest_time":"09:30 AM",
"latest_time":"10:00 PM"
"status": 201,
"data": {
"id": 1,
"username": "jean",
"email": "jean@example.com",
"timezone": "Europe/Brussels",
"earliest_time":"09:30 AM",
"latest_time":"10:00 PM"l
}
}
```
@ -64,12 +67,15 @@ A json object for the registered user with `id`, `username`, `email`, `timezone`
```
{
"id": 1,
"username": "jean",
"email": "jean@example.com",
"timezone": "Europe/Brussels",
"earliest_time":"09:30 AM",
"latest_time":"10:00 PM"
"status": 200,
"data": {
"id": 1,
"username": "jean",
"email": "jean@example.com",
"timezone": "Europe/Brussels",
"earliest_time":"09:30 AM",
"latest_time":"10:00 PM"
}
}
```
@ -90,8 +96,12 @@ A json object for the deleted user with `username` and `email`.
```
{
"username": "jean",
"email": "jean@example.com"
"status": 200,
"data": {
"id": 15,
"username": "jean",
"email": "jean@example.com"
}
}
```
@ -113,11 +123,14 @@ A json object for the registered user with `id`, `username`, `email`, `timezone`
```
{
"id": 1,
"username": "jean",
"email": "jean@example.com",
"timezone": "Europe/Brussels",
"earliest_time":"09:30 AM",
"latest_time":"10:00 PM"
"status": 201,
"data": {
"id": 1,
"username": "jean",
"email": "jean@example.com",
"timezone": "Europe/Brussels",
"earliest_time":"09:30 AM",
"latest_time":"10:00 PM"l
}
}
```