---
title: "Create New Ucc1 Lien Filing Submission For Business"
method: POST
path: "/businesses/{business_id}/lien_submissions"
tags: ["Lien Filing"]
---

# Create New Ucc1 Lien Filing Submission For Business

`POST /businesses/{business_id}/lien_submissions`

Creates a new lien filing submission against a specified business
in a draft state. This endpoint enables clients to submit all
necessary information required for a lien filing, including
the type of filing, relevant parties (secured parties and debtors),
and a comprehensive description of the collateral.

Upon successful creation, the system assigns a unique identifier
to the lien filing draft, which can be utilized for
future modifications or inquiries.

The creation process entails the validation of the submitted
information, its association with the designated business entity,
and the preparation of the filing for subsequent processing steps.

If the request body does not include secured parties, the system
will attempt to generate the first secured party using the
organization's lien filing preferences, if they are present in
the organization's profile.

It's important to note that the actual filing with
the appropriate jurisdiction does not occur at this stage;
this endpoint essentially sets up the submission in a draft state,
ready for submission through
the `POST /lien_submissions/{filing_id}/submit` endpoint.

## Path parameters

- `business_id` string, uuid, required — The unique identifier of the business to file a lien against.

## Request body

- V1LienFilingSubmissionCreateUCC1Request — This structure represents the schema for creating a lien filing submission request. It is used to collect and validate all necessary information required to file a lien against a business or individual. This includes details about the filing type, jurisdiction, parties involved (debtors and secured parties), and any collateral descriptions or attachments. The structure ensures that all submissions adhere to the expected format and contain all required information for processing.
  - `reference_data` string, nullable — Reference text that will show up in the UCC form under box 8 (OPTIONAL FILER REFERENCE DATA).
  - `submission_filing_name` string, nullable — A custom name for the filing (only filer's reference).
  - `search_to_reflect` boolean, nullable — When set to true, a search will be conducted on the debtor post-filing to verify that the filing has been properly registered by the filing office.
  - `email_contact` string, nullable — This email will receive all correspondence concerning this lien filing.
  - `real_estate_info` union — The real estate information associated with the lien filing submission.
    - V1LienFilingRealEstateInfo — This model represents the real estate record in a lien filing submission.
      - `type` 'FILE_IN_REAL_ESTATE_RECORDS', required — Indicates that this FINANCING STATEMENT is to be filed [for record] (or recorded) in the REAL ESTATE RECORDS.
      - `covers_timber` boolean, nullable — Whether the financing statement filed in the lien filing submission covers timber.
      - `covers_as_extracted_collateral` boolean, nullable — Whether the financing statement filed in the lien filing submission covers as-extracted collateral.
      - `filed_as_fixture` boolean, nullable — Whether the financing statement filed in the lien filing submission is filed as a fixture.
      - `real_estate_record_owner` union
        - V1LienFilingOrganizationRecordOwnerParty — Represents an organization record owner party involved in a lien filing.
          - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
          - `city` string, nullable — The city of the lien filing party's mailing address.
          - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
          - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
          - `organization_name` string, nullable — The name of the organization involved in the lien filing.
          - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
          - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
        - V1LienFilingIndividualRecordOwnerParty — Represents an individual record owner party involved in a lien filing.
          - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
          - `city` string, nullable — The city of the lien filing party's mailing address.
          - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
          - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
          - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
          - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
          - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
          - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
          - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
      - `real_estate_description` string, nullable — A description of the real estate.
    - V1LienFilingNoRealEstateInfo — This model represents the absence of real estate information associated with a lien filing.
      - `type` 'NO_REAL_ESTATE_INFO', required — Indicates that no real estate information is associated with the lien filing.
  - `miscellaneous_info` string, nullable — Miscellaneous information associated with the lien filing submission.
  - `filing_type` 'UCC1', required — Initial financing statement, which is the first filing of a lien.
  - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
  - `jurisdiction_county` string, nullable — The county where the lien is being filed. This is typically the county where the debtor's property or collateral is located.
  - `assigned_business_debtor` V1LienFilingAssignedBusinessDebtorPartyRequest — This request model is specifically utilized for updating the mailing address information of a designated debtor party. It facilitates the modification of address details to ensure accurate and current records.
    - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
    - `city` string, nullable — The city of the lien filing party's mailing address.
    - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
    - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
    - `organization_name` string, nullable — The name of the organization involved in the lien filing.
    - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
    - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
    - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
  - `assigned_debtor` union
    - V1LienFilingAssignedBusinessDebtorPartyRequest — This request model is specifically utilized for updating the mailing address information of a designated debtor party. It facilitates the modification of address details to ensure accurate and current records.
      - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
      - `city` string, nullable — The city of the lien filing party's mailing address.
      - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
      - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
      - `organization_name` string, nullable — The name of the organization involved in the lien filing.
      - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
      - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
      - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
    - V1LienFilingAssignedPersonDebtorPartyRequest — This request model is specifically utilized for updating the mailing address information of a designated person debtor party. It facilitates the modification of address details to ensure accurate and current records.
      - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
      - `city` string, nullable — The city of the lien filing party's mailing address.
      - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
      - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
      - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
      - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
      - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
      - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
      - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
      - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
  - `debtors` union[], nullable — An enumeration of debtors implicated in the lien filing process. It is imperative to omit the debtor correlated with the business profile against which the lien is being filed. Such a debtor is automatically deduced and pre-populated based on the business_id present in the URL.
    - union
      - V1LienFilingOrganizationDebtorParty — Describes an organization that is a debtor in a lien filing. This model is tailored for organizations acting as debtors in lien contexts, including specific details relevant to their debtor status.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
        - `organization_name` string, nullable — The name of the organization involved in the lien filing.
        - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
        - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
      - V1LienFilingIndividualDebtorParty — Represents an individual debtor party involved in a lien filing. This model is designed to represent individuals who are debtors in the context of a lien, including specific details relevant to their role as a debtor party.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
        - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
        - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
        - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
        - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
        - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
  - `secured_parties` union[], nullable — A list of secured parties involved in the lien filing.
    - union
      - V1LienFilingOrganizationSecuredParty — Describes an organization acting as a secured party in a lien filing. This model is tailored to encapsulate organizations with a secured interest in the context of a lien, detailing aspects relevant to their secured party status.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `masked` boolean, nullable — A flag to indicate if the secured party should be masked when filing a lien.
        - `is_assignor` boolean, nullable — Whether the secured party is the assignor of the lien.
        - `organization_name` string, nullable — The name of the organization involved in the lien filing.
        - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
        - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
      - V1LienFilingIndividualSecuredParty — Represents an individual secured party involved in a lien filing. This model is designed to specifically represent individuals that are secured parties within the context of a lien. It captures additional details pertinent to the role of a secured party.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `masked` boolean, nullable — A flag to indicate if the secured party should be masked when filing a lien.
        - `is_assignor` boolean, nullable — Whether the secured party is the assignor of the lien.
        - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
        - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
        - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
        - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
        - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
  - `collateral_statements` union — This field permits the provision of collateral statements either in plain text format or through one or more document attachments. This flexibility enhances the presentation of detailed information or evidence pertaining to the lien's collateral. > **NOTE:** Attachments for lien filing submissions are managed through separate attachment management routes specific to lien filings. These routes allow for the upload, retrieval, and deletion of attachments associated with a lien filing. To include attachments in the collateral statements, set the `collateral_statements` field with `type="ATTACHMENTS"` and use the appropriate attachment management endpoints.
    - V1LienFilingCollateralStatementText — This structure represents the schema for a collateral statement in the form of text provided for a lien filing submission.
      - `collateral_statement_designation` 'NONE' | 'TRUST' | 'PERSONAL_REPRESENTATIVE' — Enumeration of possible designations for a lien collateral statement.
      - `text` string, nullable — A plain text description of the collateral.
      - `type` 'TEXT', required — When using this type, the structure represents the schema for a collateral statement in the form of text provided for a lien filing submission. Setting the `"type":"TEXT"` will remove all previously uploaded attachments for this lien filing submission.
    - V1LienFilingCollateralStatementAttachmentsRequest — This model is used to represent the attachments as collateral statements when creating or updating a filing submission resource. The attachments are managed through separate attachment management routes specific to lien filings.
      - `collateral_statement_designation` 'NONE' | 'TRUST' | 'PERSONAL_REPRESENTATIVE' — Enumeration of possible designations for a lien collateral statement.
      - `type` 'ATTACHMENTS', required — This structure represents attachments as collateral statements. Attachments are managed through separate attachment management routes specific to lien filings. These routes allow for the upload, retrieval, and deletion of attachments associated with a lien filing.
  - `alternative_name_designation` 'AGLIEN' | 'BAILEE_BAILOR' | 'CONSIGNEE_CONSIGNOR' | 'LESSEE_LESSOR' | 'NON_UCC_FILING' | 'SELLER_BUYER' | 'LICENSEE' | 'DEBTOR_SECURED_PARTY'
  - `alternative_filing_type` 'TRANSMITTING_UTILITY' | 'MANUFACTURED_HOME' | 'PUBLIC_FINANCE' | 'NOT_APPLICABLE'
  - `principal_indebted_amount` union
    - number
    - string
  - `documentary_tax_stamp_required` boolean, nullable — Whether a documentary tax stamp is required for the lien filing submission. When set to `true` all Documentary Stamps due and payable or to become due and payable pursuant, have been paid. If set to `false`, the lien filing submission will not require a documentary tax stamp.
  - `tax_exempt_reason` 'DEBTOR_COOPERATIVE_MARKETING_ASSOCIATION' | 'DEBTOR_CREDIT_UNION' | 'DEBTOR_TELEPHONE_COOPERATIVE' | 'GOVERNMENT_AGENCY' | 'JUDGEMENT_LIEN' | 'MUNICIPALITY' | 'REORGANIZATION' | 'SECURITIES' | 'STATE_AGENCY' | 'NOT_EXEMPT' — Enum for the tax exempt reason for a lien filing.

## Response `201`

Successfully created a draft lien filing submission record.

- V1LienFilingSubmissionUCC1Response — Represents the response structure for a lien filing submission. This model includes all the details provided during the creation of a lien filing submission along with additional system-generated information such as the unique identifier, the current status of the submission, and the filing number if the lien has been recorded.
  - `reference_data` string, nullable — Reference text that will show up in the UCC form under box 8 (OPTIONAL FILER REFERENCE DATA).
  - `submission_filing_name` string, nullable — A custom name for the filing (only filer's reference).
  - `search_to_reflect` boolean, nullable — When set to true, a search will be conducted on the debtor post-filing to verify that the filing has been properly registered by the filing office.
  - `email_contact` string, nullable — This email will receive all correspondence concerning this lien filing.
  - `real_estate_info` union — The real estate information associated with the lien filing submission.
    - V1LienFilingRealEstateInfo — This model represents the real estate record in a lien filing submission.
      - `type` 'FILE_IN_REAL_ESTATE_RECORDS', required — Indicates that this FINANCING STATEMENT is to be filed [for record] (or recorded) in the REAL ESTATE RECORDS.
      - `covers_timber` boolean, nullable — Whether the financing statement filed in the lien filing submission covers timber.
      - `covers_as_extracted_collateral` boolean, nullable — Whether the financing statement filed in the lien filing submission covers as-extracted collateral.
      - `filed_as_fixture` boolean, nullable — Whether the financing statement filed in the lien filing submission is filed as a fixture.
      - `real_estate_record_owner` union
        - V1LienFilingOrganizationRecordOwnerParty — Represents an organization record owner party involved in a lien filing.
          - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
          - `city` string, nullable — The city of the lien filing party's mailing address.
          - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
          - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
          - `organization_name` string, nullable — The name of the organization involved in the lien filing.
          - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
          - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
        - V1LienFilingIndividualRecordOwnerParty — Represents an individual record owner party involved in a lien filing.
          - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
          - `city` string, nullable — The city of the lien filing party's mailing address.
          - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
          - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
          - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
          - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
          - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
          - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
          - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
      - `real_estate_description` string, nullable — A description of the real estate.
    - V1LienFilingNoRealEstateInfo — This model represents the absence of real estate information associated with a lien filing.
      - `type` 'NO_REAL_ESTATE_INFO', required — Indicates that no real estate information is associated with the lien filing.
  - `miscellaneous_info` string, nullable — Miscellaneous information associated with the lien filing submission.
  - `filing_type` 'UCC1', required — Initial financing statement, which is the first filing of a lien.
  - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
  - `jurisdiction_county` string, nullable — The county where the lien is being filed. This is typically the county where the debtor's property or collateral is located.
  - `assigned_business_debtor` V1LienFilingAssignedBusinessDebtorPartyResponse — Represents the response structure for an assigned business debtor party in a lien filing. This model includes details about the business entity acting as a debtor, such as its unique identifier, organizational information, and mailing address. It also incorporates additional response-specific fields like the party's ID.
    - `id` string, uuid — The unique identifier assigned to the lien filing party.
    - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
    - `city` string, nullable — The city of the lien filing party's mailing address.
    - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
    - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
    - `organization_name` string, nullable — The name of the organization involved in the lien filing.
    - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
    - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
    - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
    - `business_id` string, uuid — A unique identifier assigned to the business entity (debtor) involved in the lien filing process.
    - `role` 'Debtor', required — Indicates the role of the party as 'Debtor', signifying their interest is protected by the lien.
  - `assigned_debtor` union — The debtor associated with the business against which the lien is filed. This debtor information is pre-filled based on the business details and cannot be modified (hence not appearing in POST and PUT requests).
    - V1LienFilingAssignedBusinessDebtorPartyResponse — Represents the response structure for an assigned business debtor party in a lien filing. This model includes details about the business entity acting as a debtor, such as its unique identifier, organizational information, and mailing address. It also incorporates additional response-specific fields like the party's ID.
      - `id` string, uuid — The unique identifier assigned to the lien filing party.
      - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
      - `city` string, nullable — The city of the lien filing party's mailing address.
      - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
      - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
      - `organization_name` string, nullable — The name of the organization involved in the lien filing.
      - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
      - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
      - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
      - `business_id` string, uuid — A unique identifier assigned to the business entity (debtor) involved in the lien filing process.
      - `role` 'Debtor', required — Indicates the role of the party as 'Debtor', signifying their interest is protected by the lien.
    - V1LienFilingAssignedPersonDebtorPartyResponse — Represents the response structure for an assigned person debtor party in a lien filing. This model includes details about the person acting as a debtor, such as its unique identifier, organizational information, and mailing address. It also incorporates additional response-specific fields like the party's ID.
      - `id` string, uuid — The unique identifier assigned to the lien filing party.
      - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
      - `city` string, nullable — The city of the lien filing party's mailing address.
      - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
      - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
      - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
      - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
      - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
      - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
      - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
      - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
      - `person_id` string, uuid — A unique identifier assigned to the individual (debtor) involved in the lien filing process.
      - `role` 'Debtor', required — Indicates the role of the party as 'Debtor', signifying their interest is protected by the lien.
  - `debtors` union[], nullable — An enumeration of debtors implicated in the lien filing process. It is imperative to omit the debtor correlated with the business profile against which the lien is being filed. Such a debtor is automatically deduced and pre-populated based on the business_id present in the URL.
    - union
      - V1LienFilingOrganizationDebtorPartyResponse — Represents the response structure for an organization acting as a debtor in a lien filing. This model encapsulates detailed information about an organizational debtor, including its identification, contact details, and specific attributes relevant to its role in the lien. It is designed to provide a comprehensive view of the debtor's information as returned by the API in response to lien-related queries or operations.
        - `id` string, uuid — The unique identifier assigned to the lien filing party.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
        - `organization_name` string, nullable — The name of the organization involved in the lien filing.
        - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
        - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
        - `role` 'Debtor', required — Indicates the role of the party as 'Debtor', signifying their interest is protected by the lien.
      - V1LienFilingIndividualDebtorPartyResponse — Represents the response structure for an individual debtor party in a lien filing. This model encapsulates detailed information about an individual acting as a debtor, including their identification, contact details, and specific attributes relevant to their role in the lien. It is designed to provide a comprehensive view of the individual debtor's information as returned by the API in response to lien-related queries or operations.
        - `id` string, uuid — The unique identifier assigned to the lien filing party.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `capacity` 'ESTATE' | 'TRUST' | 'TRUSTEE' | 'NONE_OF_THE_ABOVE' — Defines the various capacities a debtor may assume in the context of a lien, aiding in the comprehension of their legal standing and obligations concerning the lien.
        - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
        - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
        - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
        - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
        - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
        - `role` 'Debtor', required — Indicates the role of the party as 'Debtor', signifying their interest is protected by the lien.
  - `secured_parties` union[], nullable — A list of secured parties involved in the lien filing.
    - union
      - V1LienFilingOrganizationSecuredPartyResponse — Represents the response structure for an organization acting as a secured party in a lien filing. This model encapsulates detailed information about an organizational secured party, including their identification, contact details, and specific attributes relevant to their role in the lien. It is designed to provide a comprehensive view of the secured party's information as returned by the API in response to lien-related queries or operations.
        - `id` string, uuid — The unique identifier assigned to the lien filing party.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `masked` boolean, nullable — A flag to indicate if the secured party should be masked when filing a lien.
        - `is_assignor` boolean, nullable — Whether the secured party is the assignor of the lien.
        - `organization_name` string, nullable — The name of the organization involved in the lien filing.
        - `organization_type` 'SOLE_PROPRIETORSHIP' | 'GENERAL_PARTNERSHIP' | 'LLC' | 'LLP' | 'LLLP' | 'LP' | 'C_CORPORATION' | 'S_CORPORATION' | 'B_CORPORATION' | 'NONPROFIT' | 'COOPERATIVE' | 'TRUST' | 'PROFESSIONAL_ASSOCIATION' | 'PROFESSIONAL_CORPORATION' | 'TRADE_NAME' | 'BANK' | 'CREDIT_UNION' | 'INSURANCE' | 'OTHER'
        - `type` 'ORGANIZATION', required — Specifies the party type as 'Organization' for the context of this lien filing, indicating that the party is an organization or entity rather than a person.
        - `role` 'Secured Party', required — Indicates the role of the party as 'Secured', signifying their interest is protected by the lien.
      - V1LienFilingIndividualSecuredPartyResponse — Represents the response structure for an individual secured party in a lien filing. This model encapsulates detailed information about an individual acting as a secured party, including their identification, contact details, and specific attributes relevant to their role in the lien. It is designed to provide a comprehensive view of the individual secured party's information as returned by the API in response to lien-related queries or operations.
        - `id` string, uuid — The unique identifier assigned to the lien filing party.
        - `mailing_address` string, nullable — The mailing address for the lien filing party, excluding city, state, and postal code.
        - `city` string, nullable — The city of the lien filing party's mailing address.
        - `state` 'AL' | 'AK' | 'AZ' | 'AR' | 'CA' | 'CO' | 'CT' | 'DE' | 'DC' | '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' | 'PR' | 'VI' | 'AE' | 'AA' | 'AP' | 'GU' | 'AS'
        - `postal_code` string, nullable — The postal code of the lien filing party's mailing address.
        - `masked` boolean, nullable — A flag to indicate if the secured party should be masked when filing a lien.
        - `is_assignor` boolean, nullable — Whether the secured party is the assignor of the lien.
        - `suffix` string, nullable — The suffix of the individual involved in the lien filing, if applicable.
        - `last_name` string, nullable — The last name of the individual involved in the lien filing, if applicable.
        - `first_name` string, nullable — The first name of the individual involved in the lien filing, if applicable.
        - `middle_name` string, nullable — The middle name of the individual involved in the lien filing, if applicable.
        - `type` 'INDIVIDUAL', required — Specifies the party type as 'Individual' for the context of this lien filing, indicating that the party is a person rather than an organization or entity.
        - `role` 'Secured Party', required — Indicates the role of the party as 'Secured', signifying their interest is protected by the lien.
  - `collateral_statements` union — This field allows for collateral statements to be provided either as plain text or as one or more document attachments, offering flexibility in how detailed information or evidence related to the lien's collateral is presented.
    - V1LienFilingCollateralStatementText — This structure represents the schema for a collateral statement in the form of text provided for a lien filing submission.
      - `collateral_statement_designation` 'NONE' | 'TRUST' | 'PERSONAL_REPRESENTATIVE' — Enumeration of possible designations for a lien collateral statement.
      - `text` string, nullable — A plain text description of the collateral.
      - `type` 'TEXT', required — When using this type, the structure represents the schema for a collateral statement in the form of text provided for a lien filing submission. Setting the `"type":"TEXT"` will remove all previously uploaded attachments for this lien filing submission.
    - V1LienFilingCollateralStatementAttachmentsResponse — This model represents a collateral statement for a lien filing that includes one or more attachments (PDF documents), to provide additional details or evidence related to the collateral. Each attachment is identified by a unique ID and has an associated filename.
      - `collateral_statement_designation` 'NONE' | 'TRUST' | 'PERSONAL_REPRESENTATIVE' — Enumeration of possible designations for a lien collateral statement.
      - `attachments` V1LienFilingAttachment[] — A list of PDF filenames as attachments.
        - `id` string, uuid, required — The unique identifier of the lien filing attachment.
        - `document_filename` string, required — The filename of the document associated with this lien filing attachment.
      - `type` 'ATTACHMENTS', required — When using this type this structure represents a collateral statement for a lien filing that includes one or more attachments (PDF documents), to provide additional details or evidence related to the collateral. Each attachment is identified by a unique ID and has an associated filename.
  - `alternative_name_designation` 'AGLIEN' | 'BAILEE_BAILOR' | 'CONSIGNEE_CONSIGNOR' | 'LESSEE_LESSOR' | 'NON_UCC_FILING' | 'SELLER_BUYER' | 'LICENSEE' | 'DEBTOR_SECURED_PARTY'
  - `alternative_filing_type` 'TRANSMITTING_UTILITY' | 'MANUFACTURED_HOME' | 'PUBLIC_FINANCE' | 'NOT_APPLICABLE'
  - `principal_indebted_amount` string, nullable — The principal indebted amount in the lien filing submission.
  - `documentary_tax_stamp_required` boolean, nullable — Whether a documentary tax stamp is required for the lien filing submission. When set to `true` all Documentary Stamps due and payable or to become due and payable pursuant, have been paid. If set to `false`, the lien filing submission will not require a documentary tax stamp.
  - `tax_exempt_reason` 'DEBTOR_COOPERATIVE_MARKETING_ASSOCIATION' | 'DEBTOR_CREDIT_UNION' | 'DEBTOR_TELEPHONE_COOPERATIVE' | 'GOVERNMENT_AGENCY' | 'JUDGEMENT_LIEN' | 'MUNICIPALITY' | 'REORGANIZATION' | 'SECURITIES' | 'STATE_AGENCY' | 'NOT_EXEMPT' — Enum for the tax exempt reason for a lien filing.
  - `id` string, uuid — The unique identifier for the lien filing submission.
  - `filing_status` 'Draft' | 'Requested' | 'InReview' | 'NeedsAttention' | 'Submitted' | 'Filed' | 'Cancelled' — Enum class delineating the various stages of a lien filing submission's lifecycle.
  - `filing_number` string, nullable — The filing number assigned to the lien, when the lien filing has been recorded by the jurisdiction. This is a unique identifier for the lien, and is used to reference the lien in subsequent transactions.
  - `filing_date` string, date, nullable — The date when the lien filing was submitted to the jurisdiction.
  - `lapse_date` string, date, nullable — The date when the lien will lapse. Assigned when the lien filing is submitted to the jurisdiction.
  - `has_downloadable_document` boolean — Indicates whether a downloadable document (e.g., the filed lien in PDF format) is available for this lien filing submission. This is typically true when the lien filing has been officially recorded by the jurisdiction.

## Other responses

- `404` — The business for the given business ID not found.
- `422` — Validation Error

---

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