Update an incorporation participant
Partially update an existing incorporation participant. Use this endpoint to correct director/shareholder roles, shareholder ownership percentages, or to re-point the participant at a different Commenda OS person or business entity. Provide roles, resource, or both. The underlying Commenda OS resource is not modified by this endpoint.
Request body
Provideroles, resource, or both. At least one of the two fields is required.
| Field | Type | Description |
|---|---|---|
roles | array | Optional. Full replacement set of roles for the participant. When provided, the supplied array fully replaces the existing roles and any omitted roles are removed. |
resource | object | Optional. Reusable Commenda OS resource the participant should reference. Provide resource.resourceType and resource.resourceId to re-point the participant at a different person or business entity. |
Update roles only
Send the full desiredroles array. Omitted roles are removed.
Update the underlying resource only
Re-point the participant at a different Commenda OS person or business entity while keeping the existing roles in place.400 response. The new resource must also be accessible to the partner; otherwise the request is rejected with a 403 response.
Update both at once
Response
The response returns the updated participant and the refreshedincorporationValidation for the incorporation.
Authorizations
Path Parameters
Incorporation identifier returned by create or list endpoints.
Incorporation-specific participant identifier returned by register, list, or read endpoints.
Body
Partially updates an existing incorporation participant. Provide roles, resource, or both. At least one of the two fields is required. When roles is provided, the supplied array fully replaces the existing roles and any omitted roles are removed. When resource is provided, the participant is re-pointed at a different Commenda OS person or business entity.
Reusable Commenda OS resource the participant should reference. Provide this when correcting which person or business entity is registered as this participant. The new resource must not already be registered as another participant on the same incorporation.
Full replacement set of roles for the participant. Omitted roles are removed.
1Response
Participant updated successfully
{
"id": "participant_123",
"participantType": "INDIVIDUAL",
"resource": {
"resourceType": "KEY_PERSON",
"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"
}
]
}