curl --location --request PUT 'http://localhost:3000/api/users' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{}'
{
"responseMessage": [
"string"
],
"responseCode": "string",
"responseData": {
"user": {
"id": "string",
"firstName": "string",
"lastName": "string",
"email": "string",
"roleType": true,
"isActive": true,
"imgUrl": "string",
"notificationSettings": {
"email": true,
"sms": true,
"pushNotification": true
},
"createdAt": "string",
"updatedAt": "string"
}
}
}