Skip to main content
GET
/
partner
/
commenda-os
/
companies
/
{companyId}
/
business-entities
/
{businessEntityId}
/
registrations
/
supported
List supported registrations for a business entity
curl --request GET \
  --url https://api.prod.commenda.io/api/v1/partner/commenda-os/companies/{companyId}/business-entities/{businessEntityId}/registrations/supported \
  --header 'x-api-key: <api-key>'
{
  "supportedRegistrations": [
    {
      "displayName": "Delaware LLC Registration",
      "description": "Corporate registry registration for a Delaware LLC.",
      "purpose": "CORPORATE_REGISTRY",
      "isExpirable": false,
      "isFunctionCritical": true,
      "internalIdentifier": "US_DE_CORP_REGISTRY",
      "corporationType": "LLC",
      "country": "US",
      "jurisdiction": "DE",
      "governmentIdentifierInternalIdentifier": "US_EIN"
    }
  ],
  "count": 12
}
Returns the registration types available for a specific business entity within a partner-accessible company. The businessEntityId must belong to the provided companyId or the API returns 404 Not Found.

Authorizations

x-api-key
string
header
required

Path Parameters

companyId
integer
required

Commenda company identifier accessible to the authenticated partner.

businessEntityId
integer
required

Commenda business-entity identifier for the specified company.

Response

Supported registrations retrieved successfully

supportedRegistrations
object[]
required
count
integer
required
Example:

12