email or phone must be provided (not both). Password must meet complexity rules (upper, lower, digit, special). Individual users require first_name, last_name, and a full postal address with ISO 3166-1 alpha-2 country. Returns 201 with user_id and verification instructions. Conflicts if email/phone is already registered (409 CONFLICT).auth_register (gateway).curl --location '/v1/auth/register' \
--header 'Content-Type: application/json' \
--data-raw '{
"email": "user@example.com",
"phone": "string",
"password": "stringst",
"type": "individual",
"first_name": "string",
"last_name": "string",
"address": {
"street": "string",
"city": "string",
"postal_code": "string",
"country": "st"
}
}'{
"user_id": "a169451c-8525-4352-b8ca-070dd449a1a5",
"verification_required": true,
"message": "string",
"email": "string",
"phone": "string"
}