Profile Update Details
Array [
fieldstringrequired
JSON path of the field being updated.
Example:
contactInfo.emailstatusstringrequired
Status of the operation for the field.
Possible values: [SUCCESS, FAIL]
Example:
FAILoldValuestringrequired
The previous value of the field.
Example:
oldValue@mail.comnewValuestringrequired
The updated value of the field.
Example:
new.value@mail.comerrorMessages object[]
List of error messages related to the update process.
Array [
codestring
Code identifying the type of error.
Example:
VALIDATION_ERRORmessagestring
Human-readable description of the error.
Example:
Email address duplication]
]
Profile Update Details
[
{
"field": "contactInfo.email",
"status": "FAIL",
"oldValue": "oldValue@mail.com",
"newValue": "new.value@mail.com",
"errorMessages": [
{
"code": "VALIDATION_ERROR",
"message": "Email address duplication"
}
]
}
]