Skip to main content
GET
/
public
/
documents
List legacy document slots for a company
curl --request GET \
  --url https://api.prod.commenda.io/api/v1/public/documents \
  --header 'x-api-key: <api-key>'
{
  "documents": [
    {
      "fileId": 900,
      "documentName": "Operating Agreement",
      "documentType": "FORMATION_DOCUMENT",
      "documentSubType": "OperatingAgreement",
      "country": "US",
      "jurisdiction": "DE",
      "corporationType": "LLC",
      "corporationId": 44
    }
  ],
  "count": 2
}

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.

This endpoint is deprecated and will be removed. Use List documents and List supported document types in the Commenda OS Partner API instead.

Authorizations

x-api-key
string
header
required

Query Parameters

companyId
integer
required

Company whose corporation documents should be listed.

documentType
enum<string>
Available options:
FORMATION_DOCUMENT,
SHAREHOLDER_DOCUMENT,
TAX_AND_COMPLIANCE_DOCUMENT,
FINANCIAL_RECORDS,
OFFICE_AND_ADMINISTRATION_DOCUMENT,
CONTRACTS_AND_AGREEMENTS,
MISCELLANEOUS
documentSubType
string

Filter by Commenda legacy document subtype.

Response

Document slots retrieved successfully

documents
object[]
required
count
integer
required
Example:

2