Skip to main content

UpdateStakeHolderRequestBody

Stakeholder data to update

firstNamestring

First name of the person (only for person stakeholders)

Example: John
lastNamestring

Last name of the person (only for person stakeholders)

Example: Doe
companyNamestring

Company name (only for company stakeholders)

Example: Acme Corporation
sirenstring

SIREN number (only for company stakeholders)

Example: 123456789
addressstring

Address of the company

postalCodestring

Postal code of the company

citystring

City of the company

externalCodestring

External code of the company

contactsDetails object[]

Contact details list. If present, it REPLACES the existing list.

  • Array [
  • emailstringrequired

    Email address of the contact

    Example: john.doe@example.com
    phoneNumberstring

    Phone number of the contact (optional)

    Example: 0123456789
    additionalInfosstring

    Additional infos of the contact (optional)

  • ]
  • isActiveboolean

    Active flag. If present, it updates the current value.

    Example: true
    faxstring

    Fax of the company

    functionstring

    Function of the person

    UpdateStakeHolderRequestBody
    {
    "firstName": "John",
    "lastName": "Doe",
    "companyName": "Acme Corporation",
    "siren": 123456789,
    "address": "string",
    "postalCode": "string",
    "city": "string",
    "externalCode": "string",
    "contactsDetails": [
    {
    "email": "john.doe@example.com",
    "phoneNumber": "0123456789",
    "additionalInfos": "string"
    }
    ],
    "isActive": true,
    "fax": "string",
    "function": "string"
    }