on 2023 Dec 14 5:50 PM
Hello,
I would like to do a migration with Dataflow.
I managed to create a user with the required information, but when it comes to the custom fields, it is not field.
I have created a field called ietf_languag_tag in CDC --> data.ietf_languag_tag
I am using this JSON for the dataflow:
[
{
"profile":{
"email":[an email address],
"first_name":"Guillaume",
"last_name":"Plaindoux",
"gender":"m",
"language_preferred":"fr",
"country":"FR",
"data":{
"ietf_language_tag": "fr_FR"
}
}
}
]
Please see attached the parameters of my dataflow.
dataflow-1.png
The field ietf_language_tag is not populated.
Let me know what's wrongn and how I can do this.
Cheers,
Guillaume
Request clarification before answering.
Data is not nested in profile. Try something along these lines:
{
"profile": {
"email": "an email address",
"first_name": "Guillaume",
"last_name": "Plaindoux",
"gender": "m",
"language_preferred": "fr",
"country": "FR"
},
"data": {
"ietf_language_tag": "fr_FR"
}
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.