Create a personal profile for the authenticated user. A personal profile represents an individual and is required before creating transfers or business profiles.
Use the X-idempotence-uuid header to safely retry requests. If omitted and a profile already exists, the API returns 409 Conflict. You can then retrieve existing profiles via List profiles.
Field notes
- First and last names are limited to 30 characters each. Truncate if necessary (e.g. when a customer has many middle names).
occupationsis required for CA, IN, JP, ID, IL, MX, and within the US for the state NM.contactDetailsare used for mandatory customer notifications and to help identify your customer when contacting Wise support.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Preferred first name, if different to the legal first name.
First name in Katakana. Required for from-JPY personal transfers.
Last name in Katakana. Required for from-JPY personal transfers.
An external reference identifier mapping the customer of this profile to your system.
- Production Environmenthttps://api.wise.com/v2/profiles/personal-profile
- Sandbox Environmenthttps://api.wise-sandbox.com/v2/profiles/personal-profile
- UserToken
- PersonalToken
curl -i -X POST \
https://api.wise.com/v2/profiles/personal-profile \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-External-Correlation-Id: f47ac10b-58cc-4372-a567-0e02b2c3d479' \
-H 'X-idempotence-uuid: 497f6eca-6276-4993-bfeb-53cbbbba6f08' \
-d '{
"firstName": "Oliver",
"lastName": "Wilson",
"preferredName": "Olivia",
"firstNameInKana": null,
"lastNameInKana": null,
"address": {
"addressFirstLine": "50 Sunflower Ave",
"city": "Phoenix",
"countryIso3Code": "usa",
"postCode": "10025",
"stateCode": "AZ"
},
"nationality": "usa",
"dateOfBirth": "1977-07-01",
"externalCustomerId": "12345-oliver-wilson",
"contactDetails": {
"email": "o.wilson@example.com",
"phoneNumber": "+3725064992"
},
"occupations": [
{
"code": "Software Engineer",
"format": "FREE_FORM"
}
]
}'Created personal profile.
Echoed back when X-External-Correlation-Id was included in the request. Learn more.
{ "id": 30000001, "type": "PERSONAL", "details": { "firstName": "Oliver", "lastName": "Wilson", "preferredName": "Olivia", "firstNameInKana": null, "lastNameInKana": null, "address": { "addressFirstLine": "50 Sunflower Ave", "city": "Phoenix", "countryIso3Code": "usa", "postCode": "10025", "stateCode": "AZ" }, "nationality": "usa", "dateOfBirth": "1977-07-01", "externalCustomerId": "12345-oliver-wilson", "contactDetails": { "email": "o.wilson@example.com", "phoneNumber": "+3725064992" }, "occupations": [ { … } ], "localizedInformation": [ {} ] } }