curl --request PATCH \
--url https://api.example.com/organization/members/{user_id} \
--header 'Content-Type: application/json' \
--cookie fastapiusersauth= \
--data '
{
"password": "<string>",
"email": "[email protected]",
"is_active": true,
"is_superuser": true,
"is_verified": true,
"role": "basic",
"first_name": "<string>",
"last_name": "<string>",
"settings": {}
}
'