curl --request POST \
--url https://api.example.com/users \
--header 'Content-Type: application/json' \
--data '
{
"email": "[email protected]",
"password": "password123",
"firstName": "John",
"lastName": "Doe",
"provider": "<string>",
"providerId": "<string>",
"image": "<string>",
"isEmailVerified": true,
"roles": [
"user"
]
}
'