Profile Update Details
Array [
fieldstringrequired
JSON path of the field being updated.
Example:
contactInfo.email
statusstringrequired
Status of the operation for the field.
Possible values: [SUCCESS
, FAIL
]
Example:
FAIL
oldValuestringrequired
The previous value of the field.
Example:
oldValue@mail.com
newValuestringrequired
The updated value of the field.
Example:
new.value@mail.com
errorMessages object[]
List of error messages related to the update process.
Array [
codestring
Code identifying the type of error.
Example:
VALIDATION_ERROR
messagestring
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"
}
]
}
]