---
uuid: 91fe82b6-a082-48dd-84ed-57a79d263f8c
date_created: 2025-07-05T08:07:47.450Z
date_updated: 2026-03-11T09:25:53.710Z
outdated: true
end_of_support_date: 2023-10-11
routes: 
  - PATCH /v0/customers/{customer_id}/profile
---

# Impact migration of the route PATCH /v0/customers/{customer\_id}/profile

Upgrade from `PATCH /v0/customers/{customer_id}/profile` to `PATCH /v1/customers/{customer_id}/profile`

## Impacts

Call `PATCH /v1/customers/{customer_id}/profile` instead of `PATCH /v0/customers/{customer_id}/profile`

Input payload :

```diff
{
  "email": "tom@example.com",
  "civility": "MR",
  "unicode_civility": "MR",
  "first_name": "Tom",
  "unicode_first_name": "Tom",
  "last_name": "Smith",
  "unicode_last_name": "Smith",
  "birthdate": "19870625",
  "birth_country_code": "FR",
  "identity": {
    "number": "E001241",
    "type": "TAX_NUMBER"
  },
  "phones": [
    {
      "number": "0623456789",
      "type": "MOBILE"
    }
  ],
  "address": {
    "number": "15",
    "street": "AVENUE DES CHAMPS ELYSEES",
    "add_on": "6A",
    "town": "Luynes",
    "city": "Aix-en-Provence",
    "zip_code": "75000",
    "state_or_district": "CA",
    "country": "FRANCE",
    "additional_information_1": "Chez M. Dupont",
    "additional_information_2": "Entreprise Clubmed",
    "country_code": "FR"
  },
  "optins": [
    {
      "channel": "EMAIL",
      "optin": true,
      "optin_partners": true
    }
  ],
  "language_code": "FR",
  "personal_data_usage_allowed": true,
-  "identity_number": "20.271.205"
}
```

Output : unchanged
