curl --request POST \
--url https://api.identety.dev/users \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '{
"email": "john@example.com",
"password": "password123",
"name": "John Doe",
"givenName": "John",
"familyName": "Doe",
"picture": "https://example.com/photo.jpg",
"locale": "en-US",
"address": {
"streetAddress": "123 Main St",
"locality": "New York",
"region": "NY",
"postalCode": "10001",
"country": "USA"
},
"metadata": {
"customField": "value"
}
}'