curl --request PATCH \
--url https://api.example.com/api/v1/users/:id \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"username": "<string>",
"password": "<string>",
"email": "<string>",
"phone": "<string>",
"role": "<string>",
"ventanaId": "<string>",
"code": "<string>",
"isActive": true,
"settings": {
"settings.print": {
"settings.print.name": "<string>",
"settings.print.phone": "<string>",
"settings.print.width": 123,
"settings.print.footer": "<string>",
"settings.print.barcode": true,
"settings.print.bluetoothMacAddress": "<string>"
},
"settings.theme": "<string>",
"settings.system": {}
}
}
'