CreateStakeHolderResponseBody
Response body for stakeholder creation
Unique identifier of the created stakeholder (null if creation failed)
123e4567-e89b-12d3-a456-426614174000invalidRequest object
Stakeholder data to create
Type of stakeholder (person or company)
personFirst name of the person (required for type=person)
JohnLast name of the person (required for type=person)
DoeCompany name (required for type=company)
Acme CorporationSIREN number for company (required for type=company)
123456789Address of the company
Postal code of the company
City of the company
External code of the company
contactsDetails object[]required
Contact details of the company
Email address of the contact (required for type=person/company)
john.doe@example.comPhone number of the contact (not required)
0123456789Additional infos of the contact (not required)
Contact active status of the company or person
Fax of the company
Function of the person
Error message (present only if there was an error)
Your request could not be processed. Please try again later or contact support.{
"uid": "123e4567-e89b-12d3-a456-426614174000",
"invalidRequest": {
"type": "person",
"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"
},
"error": "Your request could not be processed. Please try again later or contact support."
}