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

Response

200
application/json

HTTP OK

The response is of type object.