Add status code to responses
This commit is contained in:
parent
d0a8c17089
commit
8f6dab9cae
@ -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
|
||||
}
|
||||
}
|
||||
```
|
Loading…
Reference in New Issue
Block a user