reqPut (data: Object, endpoint: string = ''): Promise<any>  {
        return this.makeRequest(endpoint, data, 'PUT')
            .then(
                response => {
                    return this.handleResponse(response);