curl --request PATCH \
--url https://api.example.com/me \
--header 'Content-Type: application/json' \
--data '
{
"account": {
"name": "<string>",
"email": "<string>",
"phonenumber": "<string>"
},
"accountPortals": [
{
"emailDailySummary": true,
"portalId": 123,
"accountId": 123
}
]
}
'