Fresh Single Visitor Registration
Only one registration per customer is accepted for a particular date. If you wish to get it modified, please get in touch with the support team.
Fresh Registration
POST https://api.agreeq.com/v1/visitorregistrations/registration/:clientUUID/:venueUUID/:departmentUUID
This endpoint allows you to register a new visit.
Path Parameters
Name
Type
Description
departmentUUID
string
Unique department UUID
venueUUID
string
Unique venue UUID
clientUUID
string
Unique client UUID
Headers
Name
Type
Description
Authentication
string
Authentication token to track down who is emptying our stocks.
Request Body
Name
Type
Description
visitorCount
string
Number of people visiting including the customer. Minimum value of 1.
visitDate
string
Visit date in YYYY-MM-DD format
mobileNumber
string
Mobile Number of the customer
customerName
string
Customer Full Name
{
"message": "success",
"status": 200,
"booking": {
"bookingUUID": "0543958b-5857-4292-a44c-a644fc01b62d",
"userUUID": "b7b7d17c-41ef-44b2-ac74-ddc4cb978864",
"visitorCount": 2,
"date": "2020-06-22",
"bookingNumber": "IC4R19",
"ts": "2020-06-19 01:42:22"
}
}{
"message": "error",
"status": 402,
"description": "User already have a booking for the same date"
}{
"message": "error",
"status": 400,
"description": "Unable to book"
}Last updated