Skip to main content
DELETE
/
partner
/
incorporation
/
{incorporationId}
/
participants
/
{participantId}
Remove an incorporation participant
curl --request DELETE \
  --url https://api.prod.commenda.io/api/v1/partner/incorporation/{incorporationId}/participants/{participantId} \
  --header 'x-api-key: <api-key>'
{
  "statusCode": 403,
  "message": "Company does not belong to this affiliate firm",
  "error": "Forbidden"
}
Removes a participant registration from an incorporation. This removes the incorporation-specific participant record and its linked participant documents. It does not delete the underlying Commenda OS person or business entity referenced by the participant, so that reusable resource can still be used elsewhere. After removing a participant, reread the incorporation or list participants to inspect the updated validation state and remaining participant requirements.

Authorizations

x-api-key
string
header
required

Path Parameters

incorporationId
string
required

Incorporation identifier returned by create or list endpoints.

participantId
string
required

Incorporation-specific participant identifier returned by register, list, or read endpoints.

Response

Participant removed successfully