Skip to main content
POST
/
events
/
{eventId}
/
venues
/
{venueId}
/
feedback
Update Venue Feedback
curl --request POST \
  --url https://nowadays.ai/api/northstar/events/{eventId}/venues/{venueId}/feedback \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "liked": true,
  "comment": "<string>"
}
'
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

eventId
string
required
The ID of your event
venueId
string
required
The ID of the venue

Request Body

liked
boolean
Set to true to like the venue, false to unlike
comment
string
Your feedback or comments about the venue

Example Request

{
  "liked": true,
  "comment": "Love the outdoor space and the natural lighting in the main hall."
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

eventId
string
required
venueId
string
required

Body

application/json
liked
boolean

Whether the venue is liked or not

comment
string

Feedback comment about the venue

Response

200

Feedback updated successfully