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

# Delete Product Input

> Deletes ProductInputs from a specific Merchant Center API data source, one or many at once (up to 200)

Deletes ProductInputs from a specific Merchant Center API data source, one or many at once (up to 200). The processed products may take several minutes to disappear.

|                       |                            |
| --------------------- | -------------------------- |
| **App**               | Google Merchant Center     |
| **Operation ID**      | `gmc_delete_product_input` |
| **Type**              | Action                     |
| **Connection**        | `gmc` (required)           |
| **Credits per run**   | 1                          |
| **Agent / MCP tool**  | Yes                        |
| **Requires approval** | Yes (write operation)      |

## Inputs

| Field                     | Type                                          | Required | Default | Description                                                                                                                                                                                                          |
| ------------------------- | --------------------------------------------- | -------- | ------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| `account`                 | DynamicAccount                                | Yes      | -       | Select the Merchant Center account that owns the product inputs.                                                                                                                                                     |
| `update_type`             | string or SelectableOption                    | Yes      | -       | Choose whether to delete a single product or many at once. Options: single or bulk.                                                                                                                                  |
| `data_source_id`          | string or SelectItem                          | Yes      | -       | API data source ID from which to delete the product inputs. Applies to every row in bulk mode.                                                                                                                       |
| `product_input_id`        | string or SelectItem                          | No       | -       | Product input identifier, usually contentLanguage~~feedLabel~~offerId, for example en~~US~~sku123. Use Google's unpadded base64url form when an identifier component contains /, %, or \~. Required for single mode. |
| `structured_data`         | array (also accepts a comma-separated string) | No       | -       | Use only when update\_type is bulk. A list of up to 200 rows, each with product\_input\_id.                                                                                                                          |
| `return_detailed_results` | boolean                                       | No       | `False` | Bulk mode only. If true, returns per-row results and does not raise on partial failures.                                                                                                                             |

### SelectItem

| Field   | Type   | Required | Default | Description                                                                                          |
| ------- | ------ | -------- | ------- | ---------------------------------------------------------------------------------------------------- |
| `value` | string | Yes      | -       | The value of the selectable item.                                                                    |
| `label` | string | Yes      | -       | The label of the selectable item, used for display purposes. If not provided, defaults to the value. |

### SelectableOption

| Field   | Type   | Required | Default | Description |
| ------- | ------ | -------- | ------- | ----------- |
| `value` | string | Yes      | -       |             |
| `label` | string | Yes      | -       |             |

## Output

**Type**: `Dict`

Identifies the deleted product input and data source.

**Fields**: `product_input_id`, `data_source_id`, `deleted`
