Replace the roles for an existing incorporation participant. Use this endpoint to correct director/shareholder roles or shareholder ownership percentages without recreating the underlying Commenda OS person or business entity. Writes that make shareholder ownership exceed the selected requirements total are rejected.
roles array.
Send the full desired roles array. Omitted roles are removed.
Incorporation identifier returned by create or list endpoints.
Incorporation-specific participant identifier returned by register, list, or read endpoints.
Replaces the roles on an existing incorporation participant. Omitted roles are removed.
1Participant updated successfully
{
"participantId": "participant_123",
"participantType": "individual",
"resource": {
"resourceType": "keyPerson",
"resourceId": "12"
},
"roles": [
{ "role": "director" },
{
"role": "shareholder",
"ownershipPercentage": 100
}
],
"documents": [
{
"documentId": "document_123",
"participantId": "participant_123",
"documentKind": "passport_scan",
"fileId": 456,
"status": "submitted"
},
{
"documentId": "document_124",
"participantId": "participant_123",
"documentKind": "utility_bill",
"fileId": 789,
"status": "submitted"
}
]
}