UpdateStakeHolderRequestBody
Stakeholder data to update
firstNamestring
First name of the person (only for person stakeholders)
Example:
JohnlastNamestring
Last name of the person (only for person stakeholders)
Example:
DoecompanyNamestring
Company name (only for company stakeholders)
Example:
Acme Corporationsirenstring
SIREN number (only for company stakeholders)
Example:
123456789addressstring
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.comphoneNumberstring
Phone number of the contact (optional)
Example:
0123456789additionalInfosstring
Additional infos of the contact (optional)
]
isActiveboolean
Active flag. If present, it updates the current value.
Example:
truefaxstring
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"
}