v5
latestOpenAPI 3.1.02026-07-262421791.5 MBprofile
Update an identification document
Update an existing identification document on a personal profile. Not applicable to business profiles.
This endpoint performs a full replacement of the document details. Any fields not provided in the request body will be set to null on the stored document. Partners must provide all fields they wish to retain.
Only partners with a KYC partner onboarding model are permitted to use this endpoint. Non-KYC partners will receive a 400 error.
put/v1/profiles/{profileId}/verification-documents
Path parameters
profileIdinteger required
Profile ID.
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
{
"clientId": "mercury",
"firstName": "Oliver",
"lastName": "Wilson",
"type": "IDENTITY_CARD",
"uniqueIdentifier": "AA299822313",
"issueDate": "2017-12-31",
"issuerCountry": "EE",
"expiryDate": "2027-12-31",
"sex": "MALE",
"placeOfBirth": "London"
}Response
Identification document updated successfully.
Example response
{
"success": true
}