dayOfBirth for Principal with id 741 for Boarding Application 607.NOTE Only send the parameters that you want to update, there is no need to send a full request with all the parameters for the Principal.
Authorization: Bearer ********************{
"dayOfBirth": "1986-10-21"
}curl --location --request PUT '/api/boarding-application/607/principal/741' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"dayOfBirth": "1986-10-21"
}'[
{
"id": 741,
"title": "CEO",
"name": {
"first": "Robert",
"last": "Smith"
},
"dayOfBirth": "1986-10-21",
"ssn": null,
"nationalId": null,
"nationality": {
"id": 199
},
"driverLicense": {
"number": null,
"expiration": null,
"state": {
"id": 5
}
},
"address": {
"street": "123 Str Name",
"city": "Calabasas",
"zip": "91302",
"state": {
"id": 5
},
"country": {
"id": 199
}
},
"phone": null,
"email": null,
"ownershipPercentage": 50,
"isManagement": "No",
"isSigner": "Yes",
"isPersonalGuarantee": "No"
}
]