Retrieve one incorporation visible to the authenticated partner. Use this direct route for intake state reads.
intakeState, participants, and top-level incorporationStatus for an ongoing incorporation.
intakeState.validation.isComplete tells you whether the current state is eligible to submit. submitted or in_progress is returned only after POST /partner/incorporation/{incorporationId}/submit succeeds for a currently complete incorporation.
Use Get incorporation status for stage-level progress and blocking issue ids. Use List incorporation issues to track active or resolved correction requests.
incorporationStatus can be one of:
| Status | Meaning |
|---|---|
awaiting_customer_input | Required intake information, participant roles, or documents are still missing or invalid, or the current state is complete but has not been submitted for review. |
submitted | The incorporation was explicitly submitted and currently validates against the requirements DSL, but workflow work has not started yet. |
in_progress | Commenda is actively processing the incorporation through the dedicated workflow. |
blocked | The incorporation has active partner-visible issues or workflow start/runtime failures. |
completed | The incorporation has been completed. |
Incorporation identifier returned by create or list endpoints.
Incorporation retrieved successfully
Requirements DSL for the selected incorporation. Clients can use this to render their own intake UI, but intake updates are always validated against the current server-side DSL.
{
"schemaVersion": "2026-04-22",
"dslVersion": "mvp-2026-04-22",
"key": "sg.private_limited_company",
"country": "SG",
"countryOptions": {
"corporationType": "PRIVATE_LIMITED_COMPANY"
},
"name": "Singapore Private Limited Company Incorporation Requirements",
"blocks": [
{
"key": "companyNames",
"name": "Company name options"
}
],
"participantRequirements": [
{
"key": "directors",
"name": "Directors",
"role": "director",
"allowedParticipantTypes": ["individual"],
"allowedResourceTypes": ["keyPerson"],
"documentRequirements": [
{
"documentKind": "passport_scan",
"name": "Passport scan"
},
{
"documentKind": "utility_bill",
"name": "Utility bill"
}
]
}
]
}Participants registered to this incorporation, when requested or available.