v5
latestOpenAPI 3.1.02026-07-262421791.5 MBprofile
Update a profile (V1)
{% admonition type="warning" %} This endpoint is deprecated. Please see the Update Personal Profile and Update Business Profile v2 endpoints. {% /admonition %}
Update user profile information. Request and response is same as described in the create profile endpoint, with the addition of the id field.
{% admonition type="info" %} If user profile has been verified then there are restrictions on what information is allowed to change, where permitted, use the update window functionality to submit updated data. {% /admonition %}
put/v1/profiles
Headers
X-External-Correlation-Idstring uuid
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"id": 30000001,
"type": "personal",
"details": {
"firstName": "Oliver",
"lastName": "Wilson",
"preferredName": "Olivia",
"dateOfBirth": "1977-07-01",
"phoneNumber": "+3725064992"
}
}Response
Updated profile.
Example response
{
"id": 30000001,
"type": "personal",
"details": {
"firstName": "Oliver",
"lastName": "Wilson",
"dateOfBirth": "1977-07-01",
"phoneNumber": "+3725064992",
"occupations": [
{
"code": "Software Engineer",
"format": "FREE_FORM"
}
]
}
}