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": 46,
            "external_note": "Unlocked Gold",
            "started_at": "2023-01-22T22:24:37.512Z",
            "ended_at": null
        },
        {
            "id": 42,
            "external_note": "Unlocked Silver",
            "started_at": "2023-01-17T21:34:14.391Z",
            "ended_at": "2023-01-22T22:24:37.512Z"
        }
    ]
}