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