# Respond to an Interaction

```http
POST https://api.synup.com/api/v4/locations/reviews/respond
```

This API posts a response to a specific interaction on the respective partner site (e.g., Google, Facebook, Yelp).

    **Behavior:**
- The response is posted directly to the platform where the interaction originated.
- Some platforms may have moderation policies that affect response visibility.
- Supports text-based responses; some platforms may allow limited formatting.
- Ensures responses comply with platform-specific guidelines.

Source: https://developer.synup.com/api/reviews/respond-to-an-interaction

## Request body

| Name | Type | Required | Description |
| --- | --- | --- | --- |
| `interactionId` | string | required | ID of the interaction to respond to |
| `responseContent` | string | required | Response text content |

## Example request

```bash
curl -X POST 'https://api.synup.com/api/v4/locations/reviews/respond' \
  -H 'Authorization: API YOUR_API_KEY' \
  -H 'Content-Type: application/json' \
  -d '{
  "interactionId": "2090753a-ece6-4837-8336-8494ad308523",
  "responseContent": "This is a sample response"
}'
```

## Responses

| Status | Description |
| --- | --- |
| `200` | Response successfully posted |
