curl --location --request POST 'api/v1/registrations/users/register' \
--header 'x-api-key: {{api-key}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"userKey": "{{$string.uuid}}",
"name": "{{$person.fullName}}",
"userProperties": {
"gender": 0,
"birthDate": "{{$date.birthdate}}",
"country": "{{$location.countryCode}}",
"city": "{{$location.city}}",
"segment": "VIP"
}
}'{
"userKey": "string",
"name": "string",
"createdDate": null,
"userProperties": {
"gender": 0,
"birthDate": "string",
"country": "string",
"city": "string",
"segment": "string"
}
}