PUT
/
tickets
/
by-code
/
{ticketCode}
/
checkin
curl --request PUT \
  --url https://api-alpha.fourvenues.com/integrations/tickets/by-code/{ticketCode}/checkin \
  --header 'Content-Type: application/json' \
  --header 'integration_id: <api-key>' \
  --header 'secret: <api-key>' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "enter": 1,
  "entry_date": "2022-09-15T23:00:00.000Z",
  "quality": 2
}'
{
  "success": true
}

Authorizations

integration_id
string
header
required

Identifier of the integration (Auth v1)

secret
string
header
required

Secret of the organization (Auth v1)

x-api-key
string
header
required

API key (Auth v2)

Path Parameters

ticketCode
string
required

Code of the ticket

Body

application/json
Body of the request

Ticket Check-in Update

enter
number

Number of people to check in.

Example:

1

entry_date
string

Entry date in ISO 8601 format.

Example:

"2022-09-15T23:00:00.000Z"

quality
number

Quality rating.

Required range: 0 <= x <= 5
Example:

2

Response

200
application/json
HTTP OK
success
boolean
Example:

true