This endpoint is deprecated. Please see the Update Personal Profile and Update Business Profile v2 endpoints.
Update user profile information. Request and response is same as described in the create profile endpoint, with the addition of the id field.
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.
Security
UserToken or PersonalToken
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Example:f47ac10b-58cc-4372-a567-0e02b2c3d479
- Production Environmenthttps://api.wise.com/v1/profiles
- Sandbox Environmenthttps://api.wise-sandbox.com/v1/profiles
- UserToken
- PersonalToken
- Personal
- Business
curl -i -X PUT \
https://api.wise.com/v1/profiles \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-d '{
"id": 30000001,
"type": "personal",
"details": {
"firstName": "Oliver",
"lastName": "Wilson",
"preferredName": "Olivia",
"dateOfBirth": "1977-07-01",
"phoneNumber": "+3725064992",
"firstNameInKana": null,
"lastNameInKana": null
}
}'Updated profile.
Headers
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
Example:"f47ac10b-58cc-4372-a567-0e02b2c3d479"
Response
- Personal
- Business
{ "id": 30000001, "type": "personal", "details": { "firstName": "Oliver", "lastName": "Wilson", "dateOfBirth": "1977-07-01", "phoneNumber": "+3725064992", "avatar": "", "occupation": "", "occupations": [ { … } ], "primaryAddress": null, "firstNameInKana": null, "lastNameInKana": null } }