---
title: "Create a registration for a business"
method: POST
path: "/v1/businesses/{business_id}/registrations"
tags: ["registrations"]
---

# Create a registration for a business

`POST /v1/businesses/{business_id}/registrations`

## Path parameters

- `business_id` string, required

## Headers

- `Authorization` string, required

## Request body

- TypeInternationalRegistrationRequestParam — A known international registration to look up for a business. Requires the International Business Verification package to be enabled for your account.
  - `file_number` string, required — The registration or file number issued by the international registry.
  - `country_code` string, required — ISO 3166-1 alpha-2 country code of the registry (e.g., `FR`, `DE`, `GB`).
  - `jurisdiction_details` TypeInternationalRegistrationRequestParamJurisdictionDetails — The sub-national jurisdiction for the registration.
    - `abbr` string — Abbreviation of the sub-national jurisdiction. Required when `country_code` is `CA`.

## Response `201`

registration created

- TypeRegistration
  - `object` string, required
  - `id` string, uuid, required
  - `business_id` string, uuid, required
  - `name` string, required
  - `status` string, required
  - `sub_status` string, nullable
  - `status_details` string, nullable
  - `jurisdiction` string, nullable, required — Indicates the relationship between the business and this jurisdiction. `DOMESTIC` or `FOREIGN` for US registrations; `HOME` or `EXTRA_PROVINCIAL` for Canada; `UNKNOWN` when undetermined; `null` for other international registrations.
  - `jurisdiction_details` TypeRegistrationJurisdictionDetails — The sub-national jurisdiction for international registrations. `null` for US registrations.
    - `name` string, nullable
    - `abbr` string, nullable
    - `authority` string, nullable — The registry authority for the jurisdiction.
  - `entity_type` string, nullable, required
  - `file_number` string, required
  - `country_code` string — `US` for domestic registrations, or an ISO 3166-1 alpha-2 code for international registrations (e.g., `FR`, `DE`, `GB`).
  - `addresses` string[]
  - `officers` object[]
  - `registered_agent` object, nullable
  - `registration_date` string, date, nullable
  - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'FL' | 'GA' | 'HI' | 'ID' | 'IL' | 'IN' | 'IA' | 'KS' | 'KY' | 'LA' | 'ME' | 'MD' | 'MA' | 'MI' | 'MN' | 'MS' | 'MO' | 'MT' | 'NE' | 'NV' | 'NH' | 'NJ' | 'NM' | 'NY' | 'NC' | 'ND' | 'OH' | 'OK' | 'OR' | 'PA' | 'RI' | 'SC' | 'SD' | 'TN' | 'TX' | 'UT' | 'VT' | 'VA' | 'WA' | 'WV' | 'WI' | 'WY', required — The US state for the registration. `null` for international registrations.
  - `source` string, uri, nullable
  - `submitted` boolean — `true` if you submitted the registration, `false` if Middesk sourced it.

## Other responses

- `403` — International Business Verification is not enabled
- `404` — business not found
- `422` — invalid registration parameters

---

[API](https://skmtc.net/middesk/apis/middesk-api.md) · [All operations](https://skmtc.net/middesk/apis/middesk-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/middesk/middesk-api/revisions/b496a7929e98/schema)
