curl --location --request PATCH '/api/v2/kyc/user-details' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name_dob": {
"first_name": "string",
"last_name": "string",
"date_of_birth": "2000-01-01"
},
"phone": {
"country_iso_3": "AUS",
"country_code_prefix": "+61",
"phone_number": "431234567"
},
"address": {
"address_line_1": "string",
"town_or_city": "string",
"administrative_region": "string",
"post_code": "string",
"country_iso_3": "AUS"
},
"tax_details": {
"is_tax_resident_outside_australia": true,
"country_iso_3": "AUS",
"tax_identification_number": "string"
}
}'