Content
View differences
Updated by Jan Sandbrink 6 months ago
### Steps to reproduce
1. Send the following payload to the users api (e.g. `POST /api/v3/users` or `PATCH /api/v3/users/:id`):
```json
{
"name": "ABC"
}
```
### What is the buggy behavior?
* a 500 is produced
* The client gets no feedback that the field is read-only write only
### What is the expected behavior?
1. No 500
2. Ideally report that the field is read-only, write only, otherwise ignore the field.
###
1. Send the following payload to the users api (e.g. `POST /api/v3/users` or `PATCH /api/v3/users/:id`):
{
"name": "ABC"
}
```
### What is the buggy behavior?
* a 500 is produced
* The client gets no feedback that the field is read-only
### What is the expected behavior?
1. No 500
2. Ideally report that the field is read-only,
###