My API RESTful Structure is :
{
"users":[
{
"id": 100,
"idempotent_property": 10,
"not_idempotent_property": 10
}
]
}
If I want to change only the value of "idempotent_property", I do : PATCH /users/100 > body : {"idempotent_property": 17}
But How must I do if I want to change only the value of "not_idempotent_property" ? PATCH must be used only for idempotent objet/property, isn't it ?
I think to this : POST /users/100/not_idempotent_property > body : {"value": 15}