Skip to main content
POST
/
api
/
halls
/
{hall_id}
/
seating-chart
Upload or update a seating chart image for a hall
curl --request POST \
  --url https://tandem.hlofiys.xyz/api/halls/{hall_id}/seating-chart \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: multipart/form-data' \
  --form seating_chart_image='@example-file'
{
  "seating_chart_url": "<string>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

hall_id
integer<int64>
required

Body

multipart/form-data
seating_chart_image
file
required

The image file to upload.

Response

Image uploaded successfully. Returns the updated Hall object.

seating_chart_url
string<uri>