getCustomerVipTierLogs

Retrieve the Vip Tier Logs for a logged-in customer

RivoJS.getCustomerVipTierLogs().then(function(resp){
  console.log(resp)
});

Sample response

{
    "success": true,
    "membership_logs": [
        {
            "id": 54321,
            "external_note": "Unlocked Silver",
            "started_at": "2023-06-08T14:51:13.346Z",
            "ended_at": null
        },
        {
            "id": 54322,
            "external_note": "Unlocked Bronze",
            "started_at": "2023-06-08T14:32:44.054Z",
            "ended_at": "2023-06-08T14:51:13.346Z"
        }
    ]
}