Hello,
How to update the item part of the Profile schem , for example the parts of location such as address1, address2, ...and so...ZipCode.... ?
for example , in the documentation we can see an example for updating ou creating a profile, butr thi example is only about "simple" fields ::
<--
-X PATCH https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/<PKEY> \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Cache-Control: no-cache' \ -H 'X-Api-Key: <API_KEY>' \ -d '{"firstName":"Mark"',"lastName":"Smith"}'
-->
By what must i replace "firstname" or "lastname" to update the location.... address1 etc?
Thanks
Franck
Solved! Go to Solution.
Views
Replies
Total Likes
Use PATCH request with following incase if you're updating part of the profile details. It will look like this,
-X PATCH https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/<PKEY> \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>' \
-d '{
"lastName": "",
"location": {
"address1": "123 street",
"address2": "",
"address3": "",
"address4": "",
"city": "",
"countryCode": "",
"stateCode": "",
"zipCode": ""
},
"middleName": "",
"mobilePhone": ""
}'
Thanks, Sathees
Use PATCH request with following incase if you're updating part of the profile details. It will look like this,
-X PATCH https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/<PKEY> \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>' \
-d '{
"lastName": "",
"location": {
"address1": "123 street",
"address2": "",
"address3": "",
"address4": "",
"city": "",
"countryCode": "",
"stateCode": "",
"zipCode": ""
},
"middleName": "",
"mobilePhone": ""
}'
Thanks, Sathees
Views
Replies
Total Likes
Views
Likes
Replies
Views
Likes
Replies