List of user's registrations

List of all registrations of a user

GET https://api.agreeq.com/v1/visitorregistrations/user/:clientUUID/:userUUID

This endpoint allows you to list all the registrations of a user.

Path Parameters

Name
Type
Description

clientUUID

string

Unique clientUUID

userUUID

string

Unique userUUID.

Headers

Name
Type
Description

Authentication

string

Authentication token to track down who is emptying our stocks.

{
    "message": "success",
    "status": 200,
    "booking": [
        {
            "bookingUUID": "004173bc-5ae4-4c41-b944-d89b679633e6",
            "bookingNumber": "IDV4LG",
            "customerName": "Ranju ",
            "mobileNumber": "8129339888",
            "bookingTimeStamp": "2020-06-07 02:55:51",
            "venueName": "Agreefy Kochi",
            "city": "Kochi",
            "departmentName": "Dept2",
            "visitDate": "2020-06-07",
            "timezone": "Asia/Kolkata",
            "bookeduserUUID": "c9fcab30-5c38-4469-b8ea-e43e399891cb",
            "deletedFlag": 0,
            "deletedTimestamp": null,
            "checkinFlag": 0,
            "checkinTimestamp": null,
            "checkoutFlag": 0,
            "checkoutTimestamp": null
        },
        {
            "bookingUUID": "004173bc-5ae4-4c41-b944-d89b679633e6",
            "bookingNumber": "IDA4LG",
            "customerName": "Ranju ",
            "mobileNumber": "8129339888",
            "bookingTimeStamp": "2020-06-07 02:55:51",
            "venueName": "Agreefy Kochi",
            "city": "Kochi",
            "departmentName": "Dept2",
            "visitDate": "2020-06-07",
            "timezone": "Asia/Kolkata",
            "bookeduserUUID": "c9fcab30-5c38-4469-b8ea-e43e399891cb",
            "deletedFlag": 0,
            "deletedTimestamp": null,
            "checkinFlag": 0,
            "checkinTimestamp": null,
            "checkoutFlag": 0,
            "checkoutTimestamp": null
        }
    ]
}

Last updated