> ## Documentation Index
> Fetch the complete documentation index at: https://deepline.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# GovFiles: Create Local Business Batch

> Submit 1–500 physical business locations for asynchronous legal-owner, registration, principal, and people matching. GovFiles Create Local Business Batch.

Submit 1–500 physical business locations for asynchronous legal-owner, registration, principal, and people matching.

<Info>
  Tool ID: `govfiles_create_local_business_batch`
</Info>

## Run this action

Use the TypeScript SDK for a single call. Put `ctx.tools.execute(...)` inside a Play when the call should be durable, scheduled, or run across a CSV.

```ts theme={null}
import { Deepline } from 'deepline';

const deepline = await Deepline.connect();
const result = await deepline.tools.execute(
  'govfiles_create_local_business_batch',
  {
    "locations": [
      {
        "name": "Example",
        "address": "example"
      }
    ]
  },
);

console.log(result.toolResponse.raw);
```

### CLI

```bash theme={null}
deepline tools execute govfiles_create_local_business_batch --input '{
  "locations": [
    {
      "name": "Example",
      "address": "example"
    }
  ]
}' --json
```

## Example response

The static output schema is not detailed enough to generate a reliable example. Use `deepline tools get govfiles_create_local_business_batch --json` for the complete live contract.

## Input reference

Start an ownership search

| Name                | Type    | Required | Default | Details                               |
| ------------------- | ------- | -------- | ------- | ------------------------------------- |
| `payload.locations` | `array` | Yes      | —       | Minimum items: 1. Maximum items: 500. |

<details>
  <summary>Show raw input schema</summary>

  ### Input JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Start an ownership search",
    "properties": {
      "locations": {
        "type": "array",
        "minItems": 1,
        "maxItems": 500,
        "items": {
          "type": "object",
          "properties": {
            "customer_record_id": {
              "type": [
                "string",
                "null"
              ],
              "minLength": 1,
              "maxLength": 200
            },
            "name": {
              "type": "string",
              "minLength": 1,
              "maxLength": 300
            },
            "address": {
              "type": "string",
              "minLength": 1,
              "maxLength": 1000
            },
            "phone": {
              "type": [
                "string",
                "null"
              ],
              "minLength": 1,
              "maxLength": 50
            },
            "email": {
              "type": [
                "string",
                "null"
              ],
              "minLength": 3,
              "maxLength": 320
            },
            "website": {
              "type": [
                "string",
                "null"
              ],
              "minLength": 1,
              "maxLength": 2048
            }
          },
          "required": [
            "name",
            "address"
          ],
          "additionalProperties": false
        }
      }
    },
    "required": [
      "locations"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Output reference

Standard tool result payload.

| Name          | Type     | Required | Default | Details                                        |
| ------------- | -------- | -------- | ------- | ---------------------------------------------- |
| `result.data` | `object` | Yes      | —       | Provider response payload.                     |
| `result.meta` | `object` | No       | —       | Additional response metadata (status, paging). |

<details>
  <summary>Show raw output schema</summary>

  ### Output JSON Schema

  ```json theme={null}
  {
    "type": "object",
    "description": "Standard tool result payload.",
    "properties": {
      "data": {
        "type": "object",
        "description": "Provider response payload.",
        "additionalProperties": true
      },
      "meta": {
        "type": "object",
        "description": "Additional response metadata (status, paging).",
        "additionalProperties": true
      }
    },
    "required": [
      "data"
    ],
    "additionalProperties": false
  }
  ```
</details>

## Deepline cost

* Pricing model: `per_result` (per result).
* Estimated Deepline credits: `2.1` per pricing unit.

## Related documentation

* [GovFiles provider guide](/docs/providers/govfiles/guide)
* [SDK V2 quickstart](/docs/sdk-v2/quickstart)
* [SDK reference](/docs/sdk-v2/sdk-reference)
* [Run tools across a CSV](/docs/sdk-v2/batch-csv)
