Impact migration of the route PATCH /v0/customers/{customer_id}/profile

  • Outdated
  • October 11, 2023
  • 1 related route

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 :

{
  "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