> ## 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.

# Reply To Review

> Replies to a Business Profile review as the business

Replies to a Business Profile review as the business. If the review already has a reply, it is replaced. Get review IDs from business\_profile\_list\_reviews.

|                       |                                    |
| --------------------- | ---------------------------------- |
| **App**               | Google Business Profile            |
| **Operation ID**      | `business_profile_reply_to_review` |
| **Type**              | Action                             |
| **Connection**        | `business_profile` (required)      |
| **Credits per run**   | 1                                  |
| **Agent / MCP tool**  | Yes                                |
| **Requires approval** | Yes (write operation)              |

## Inputs

| Field       | Type                 | Required | Default | Description                                                                                                                              |
| ----------- | -------------------- | -------- | ------- | ---------------------------------------------------------------------------------------------------------------------------------------- |
| `location`  | string or SelectItem | Yes      | -       | Select the Business Profile location the review belongs to, ask the user for it if not provided                                          |
| `review_id` | string               | No       | -       | ID of the review to reply to, from business\_profile\_list\_reviews (reviewId field).                                                    |
| `comment`   | string               | No       | -       | The reply text, up to 4096 characters, posted publicly as the business. If the review already has a reply, it is replaced with this one. |

### 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. |

## Output

**Type**: `Dict`

Returns the posted reply details.

**Fields**: `review_id`, `location_id`, `location_name`, `comment`, `update_time`, `status`

**Example**:

```json theme={"dark"}
{
  "review_id": "AbC123",
  "location_id": "123",
  "location_name": "My Store Downtown",
  "comment": "Thanks for the kind words!",
  "update_time": "2026-08-03T10:00:00Z",
  "status": "replied"
}
```
