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

> ## Agent Instructions
> Automate.ax automations are TypeScript programs.
> Use Bun for installation and command examples.
> Use Automate.ax for the product name and automate.ax for the package, CLI, and domain.
> Treat documented public APIs as current; do not invent transitional or deprecated names.

# Bulk Retrieve Vendors

> Retrieves one or more vendors of specified [Vendor](entity:Vendor) IDs.

`square.bulkRetrieveVendors` retrieves one or more vendors of specified [Vendor](entity:Vendor) IDs.

## Example

```ts automations/square-bulk-retrieve-vendors.automation.ts theme={null}
import { automation, onDashboardRun } from "automate.ax"
import { square } from "automate.ax/square"

export default automation("Bulk Square Retrieve Vendors", () => {
  onDashboardRun({ title: "Bulk Square Retrieve Vendors" })

  square.bulkRetrieveVendors({
    vendorIds: ["INV_V_JDKYHBWT1D4F8MFH63DBMEN8Y4"],
  })
})
```

## Inputs

Every input accepts a compatible signal. It requires `VENDOR_READ`.

| Field       | Type               | Required | Default | Description                            |
| ----------- | ------------------ | -------- | ------- | -------------------------------------- |
| `vendorIds` | `string[] \| null` | No       | —       | IDs of the Vendor objects to retrieve. |

Use the official [BulkRetrieveVendors reference](https://developer.squareup.com/reference/square/vendors-api/bulk-retrieve-vendors) for provider field semantics and limits.

## Output

Returns the official `Square.BatchGetVendorsResponse` response as a codec-safe object. Square integer money amounts remain `bigint` values.
