Add status code to responses

This commit is contained in:
rui hildt 2020-03-23 18:02:50 +01:00
parent d0a8c17089
commit 8f6dab9cae

View File

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