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

# Update Venue Feedback

> Add or update feedback for a venue

Add or update your feedback for a specific venue within an event. This includes the ability to like/unlike a venue and add comments.

### Path Parameters

<ParamField path="eventId" type="string" required>
  The ID of your event
</ParamField>

<ParamField path="venueId" type="string" required>
  The ID of the venue
</ParamField>

### Request Body

<ParamField body="liked" type="boolean">
  Set to true to like the venue, false to unlike
</ParamField>

<ParamField body="comment" type="string">
  Your feedback or comments about the venue
</ParamField>

### Example Request

```json theme={null}
{
  "liked": true,
  "comment": "Love the outdoor space and the natural lighting in the main hall."
}
```


## OpenAPI

````yaml POST /events/{eventId}/venues/{venueId}/feedback
openapi: 3.0.1
info:
  title: Nowadays API
  description: >-
    API documentation for managing events and venue proposals in the Nowadays
    system
  version: 1.0.0
servers:
  - url: https://nowadays.ai/api/northstar
security:
  - bearerAuth: []
paths:
  /events/{eventId}/venues/{venueId}/feedback:
    post:
      summary: Update Venue Feedback
      description: Add or update feedback for a specific venue within an event
      parameters:
        - name: eventId
          in: path
          required: true
          schema:
            type: string
        - name: venueId
          in: path
          required: true
          schema:
            type: string
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/VenueFeedback'
      responses:
        '200':
          description: Feedback updated successfully
components:
  schemas:
    VenueFeedback:
      type: object
      properties:
        liked:
          type: boolean
          description: Whether the venue is liked or not
        comment:
          type: string
          description: Feedback comment about the venue
  securitySchemes:
    bearerAuth:
      type: http
      scheme: bearer

````