$.ajax({
	    type: 'GET',
	    url: 'http://localhost:8081/chargingStationApi/api/v1/dashboard/aDashboard',
	    enctype: 'multipart/form-data',
	    headers: authHeader,
	    processData: false,
	    contentType: false,
	    data: null,
	    success: function (response) {
	      console.log(response);
          $('#weekSessionscount').text(response.payload.weekSessionscount);
	    },
	    error: function (error) {
	      console.log(error);
	    }
})