> ## Documentation Index
> Fetch the complete documentation index at: https://docs.commenda.io/llms.txt
> Use this file to discover all available pages before exploring further.

# List incorporations

> List incorporations visible to the authenticated partner for a single customer.

Lists incorporations for one of your customers.

Use `limit` and `offset` for pagination. The `count` field is the total number of matching incorporations before pagination.

## Incorporation status

Each returned incorporation includes `incorporationStatus`:

| 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 incorporation requirements, but Commenda review has not started yet.                |
| `IN_PROGRESS`             | Commenda review is in progress.                                                                                                                                    |
| `BLOCKED`                 | The incorporation has active partner-visible issues or review start/runtime failures.                                                                              |
| `COMPLETED`               | The incorporation has been completed.                                                                                                                              |


## OpenAPI

````yaml GET /partner/incorporation/customers/{customerId}/incorporations
openapi: 3.0.1
info:
  title: Commenda Public APIs
  description: >-
    APIs for Commenda entity management, partner incorporation, indirect tax,
    compliance, and corporate operations.
  license:
    name: NONE
    url: NONE
  version: 1.0.0
servers:
  - url: https://api.prod.commenda.io/api/v1
    description: Commenda platform APIs, including Partner Incorporation and Commenda OS.
  - url: https://transaction-tax.api.in.commenda.io/api/v1
    description: Global Indirect Tax API.
security:
  - bearerAuth: []
paths:
  /partner/incorporation/customers/{customerId}/incorporations:
    get:
      summary: List incorporations for a customer
      description: >-
        List incorporations visible to the authenticated partner for a single
        customer.
      operationId: listPartnerIncorporations
      parameters:
        - name: customerId
          in: path
          required: true
          schema:
            type: integer
          description: Customer whose incorporations should be listed.
        - name: limit
          in: query
          required: false
          schema:
            type: integer
            minimum: 1
            maximum: 100
          description: Maximum number of incorporations to return.
        - name: offset
          in: query
          required: false
          schema:
            type: integer
            minimum: 0
          description: Number of matching incorporations to skip.
      responses:
        '200':
          description: Incorporations retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PartnerIncorporationListResponse'
        '400':
          description: Invalid pagination parameters
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AffiliatePublicError'
        '401':
          description: Missing or invalid partner API key
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AffiliatePublicError'
        '403':
          description: Customer is not accessible to the partner
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/AffiliatePublicError'
      security:
        - xApiKeyAuth: []
      servers:
        - url: https://api.prod.commenda.io/api/v1
components:
  schemas:
    PartnerIncorporationListResponse:
      type: object
      required:
        - incorporations
        - count
      properties:
        incorporations:
          type: array
          items:
            $ref: '#/components/schemas/PartnerIncorporation'
        count:
          type: integer
          description: Total matching incorporations before pagination.
          example: 1
    AffiliatePublicError:
      type: object
      required:
        - statusCode
        - message
        - error
      properties:
        statusCode:
          type: integer
          example: 403
        message:
          oneOf:
            - type: string
            - type: array
              items:
                type: string
          example: Company does not belong to this affiliate firm
        error:
          type: string
          example: Forbidden
    PartnerIncorporation:
      type: object
      required:
        - id
        - customerId
        - country
        - countryOptions
        - incorporationStatus
        - createdAt
        - updatedAt
        - businessEntityId
      properties:
        id:
          type: string
          description: Incorporation identifier.
          example: 0f9a8f5e-7f7c-4c1b-a60a-b1022f9d8c91
        customerId:
          type: integer
          description: Customer that owns the incorporation.
          example: 77
        country:
          $ref: '#/components/schemas/PartnerIncorporationCountry'
        countryOptions:
          $ref: '#/components/schemas/PartnerIncorporationCountryOptions'
        incorporationStatus:
          $ref: '#/components/schemas/PartnerIncorporationStatus'
        createdAt:
          type: string
          format: date-time
          example: '2026-04-21T17:10:00.000Z'
        updatedAt:
          type: string
          format: date-time
          example: '2026-04-21T17:10:00.000Z'
        businessEntityId:
          type: integer
          nullable: true
          description: >-
            Target Commenda business entity id for the entity being
            incorporated. Corporate shareholder business entity ids are separate
            participant resource ids.
          example: 44
    PartnerIncorporationCountry:
      type: string
      description: ISO 3166-1 alpha-2 country code for the incorporation jurisdiction.
      example: SG
      enum:
        - AE
        - CA
        - GB
        - IE
        - IN
        - KY
        - NZ
        - SG
        - US
    PartnerIncorporationCountryOptions:
      type: object
      description: >-
        Country-specific incorporation options. Use the jurisdiction catalog for
        the currently supported fields and values.
      additionalProperties: true
      example:
        corporationType: PRIVATE_LIMITED_COMPANY
    PartnerIncorporationStatus:
      type: string
      description: Current top-level lifecycle status for the incorporation.
      enum:
        - AWAITING_CUSTOMER_INPUT
        - SUBMITTED
        - IN_PROGRESS
        - BLOCKED
        - COMPLETED
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer
    xApiKeyAuth:
      type: apiKey
      in: header
      name: x-api-key

````