/profile/put

These are the possible response codes when you make an API call to the /profile/put endpoint.

Response CodeErrorMessageScenarioResolution
200 OK-"stat": "ok"Update profile successfully
200 OK-"stat": "ok"Used incorrect client_id in URL
200 OK-"stat": "ok"Not existing email-address used
200 OK-"stat": "ok"Invalid locale value
200 OK-"stat": "ok"Missing locale value
200 OK-"stat": "ok"Removed locale value parameter
400 Bad Requesthttp_exception"Invalid json format"Empty payloadAdd the payload.
400 Bad Requestinvalid_parameters"Invalid json format"Invalid JSON format used in the payload.Use correct JSON format for the payload.
403 Forbiddenhttp_exception"Forbidden"Used incorrect client_id inside the body parameter and update profileUse the correct client_id value.
422 Unprocessable Entityinvalid_parameters"firstName": {
"missing": "required"
}

no error description
Missing required fieldEnter the missing required profile fields.
422 Unprocessable Entityinvalid_form_fields"emailAddress": [
"Email address is not formatted correctly."
]

"error_description": "some inputs are invalid"
Invalid email address format usedUse the correct email address format.
422 Unprocessable Entityinvalid_parameters"emailAddress": [
"required."
]

no error description
Missing emailAddress valueEnter a valid emailAddress value.