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

# sicarv4.sellers.search

> Search sellers by vnd_id and/or text (nombre|clave|alias). Same column projection as list.

# `sicarv4.sellers.search`

Search sellers by vnd\_id and/or text (nombre|clave|alias). Same column projection as list.

|                |            |
| -------------- | ---------- |
| **Adapter**    | `sicarv4`  |
| **Operation**  | `db.query` |
| **SQL policy** | `read`     |

## Parameters

| Name      | Kind          | Required | Notes                                                                  |      |      |      |
| --------- | ------------- | -------- | ---------------------------------------------------------------------- | ---- | ---- | ---- |
| `ids`     | `id_list`     | No       | Optional. Comma-separated vnd\_id                                      |      |      |      |
| `q`       | `string`      | No       | Optional. Matches nombre, clave, alias (LIKE). Whitespace terms AND'd. |      |      |      |
| `status`  | `string`      | No       | Optional. 1 / 0 / -1 / "all". options: \`all \\                        | 1 \\ | 0 \\ | -1\` |
| `columns` | `column_list` | No       | Optional. Default safe columns; "\*" for all including blobs           |      |      |      |
| `limit`   | `limit`       | No       | Optional. Default 1000, max 1000000. default 1000. max 1000000         |      |      |      |

## Example

```bash theme={"system"}
curl -s -X POST "$API/v1/devices/$DEVICE_ID/functions/sicarv4.sellers.search" \
  -H "Authorization: Bearer $ORQUESTR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{"input":{"ids":"1,2,3","q":"coca 600","status":"1","columns":"*","limit":"50"}}'
```
