Skip to main content
GET
/
attendee-check-in
Attendee Check In
curl --request GET \
  --url https://api.nuwebgroup.com/webhooks/attendee-check-in \
  --header 'Authorization: Bearer <token>'
{
  "scans": [
    {
      "company": {
        "id": 1,
        "name": "Tony's Tickets"
      },
      "event": {
        "id": 1,
        "name": "My Example Event",
        "description": "<p>lorem ipsum dolor sit amet.</p>",
        "startDate": "2023-02-22T09:00:00.000000Z",
        "endDate": "2023-02-22T21:00:00.000000Z",
        "organiserName": "John Doe",
        "organiserEmail": "[email protected]",
        "organiserPhone": "+44123456789"
      },
      "zone": {
        "id": 1,
        "name": "Entry Zone"
      },
      "customer": {
        "id": 101,
        "name": "John Doe",
        "email": "[email protected]"
      },
      "item": {
        "id": 6,
        "saleItemId": 44,
        "barcode": "AO5PZZGE1N",
        "name": "VIP Ticket"
      },
      "scannedAt": "2023-02-22T09:00:00.000000Z"
    }
  ]
}

Authorizations

Authorization
string
header
required

The 'Bearer' token can be obtained from the token management interface or via the login endpoint using your admin user credentials.

Query Parameters

id
integer
required

Scan ID

Response

Success.

The response is of type object.