Skip to main content
PUT
/
guestdata
Update Guest List Attendees
curl --request PUT \
  --url https://api.nuwebgroup.com/v1/guestdata \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "guests": [
    {
      "attended": 3,
      "attendedModification": "2021-10-20T09:53:56.499Z",
      "id": 1
    }
  ]
}
'
{
  "success": true
}

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.

Body

application/json

Request body for updating guest attendance

guests
object[]

The array of guests in which we wish to update attendance.

Response

Successful request to update guest list attendance.

success
boolean