v1
latestOpenAPI 3.1.02026-07-241695611.0 MBCreate New Ucc1 Lien Filing Submission For Business
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
The unique identifier of the business to file a lien against.
The unique identifier of the business to file a lien against.
Request body
Example request
{
"reference_data": "Filing for a 1967 Ford Mustang",
"submission_filing_name": "My Lien Filing",
"real_estate_info": {
"real_estate_record_owner": {
"mailing_address": "123 Main St",
"city": "Springfield",
"postal_code": "62701",
"organization_name": "Acme Inc"
}
},
"assigned_business_debtor": {
"mailing_address": "123 Main St",
"city": "Springfield",
"postal_code": "62701",
"organization_name": "Acme Inc"
},
"assigned_debtor": {
"mailing_address": "123 Main St",
"city": "Springfield",
"postal_code": "62701",
"organization_name": "Acme Inc"
},
"debtors": [
{
"capacity": "ESTATE",
"city": "Springfield",
"mailing_address": "123 Main St",
"organization_name": "Acme Inc",
"organization_type": "COOPERATIVE",
"postal_code": "62701",
"state": "IL",
"type": "ORGANIZATION"
}
],
"secured_parties": [
{
"city": "Springfield",
"mailing_address": "123 Main St",
"organization_name": "Acme Inc",
"organization_type": "COOPERATIVE",
"postal_code": "62701",
"state": "IL",
"type": "ORGANIZATION"
}
],
"collateral_statements": {
"text": "Commercial real estate located at 123 Business Blvd, Tech City, TX"
}
}Response
Successfully created a draft lien filing submission record.
Example response
{
"reference_data": "Filing for a 1967 Ford Mustang",
"submission_filing_name": "My Lien Filing",
"real_estate_info": {
"real_estate_record_owner": {
"mailing_address": "123 Main St",
"city": "Springfield",
"postal_code": "62701",
"organization_name": "Acme Inc"
}
},
"assigned_business_debtor": {
"mailing_address": "123 Main St",
"city": "Springfield",
"postal_code": "62701",
"organization_name": "Acme Inc"
},
"assigned_debtor": {
"mailing_address": "123 Main St",
"city": "Springfield",
"postal_code": "62701",
"organization_name": "Acme Inc"
},
"debtors": [
{
"capacity": "ESTATE",
"city": "Springfield",
"id": "1663a025-cc7f-4d76-bc86-507827c71e53",
"mailing_address": "123 Main St",
"organization_name": "Acme Inc",
"organization_type": "COOPERATIVE",
"postal_code": "62701",
"role": "Debtor",
"state": "IL",
"type": "ORGANIZATION"
}
],
"secured_parties": [
{
"city": "Springfield",
"id": "60ed3211-fe62-4ef5-9256-c0c235adfd19",
"is_assignor": null,
"mailing_address": "123 Main St",
"masked": null,
"organization_name": "Acme Inc",
"organization_type": "COOPERATIVE",
"postal_code": "62701",
"role": "Secured Party",
"state": "IL",
"type": "ORGANIZATION"
}
],
"collateral_statements": {
"text": "Commercial real estate located at 123 Business Blvd, Tech City, TX"
},
"filing_number": "UCC1-1234567890",
"filing_date": "2023-01-01",
"lapse_date": "2024-04-20"
}