getRequest(url, body, headers = {}) {
    return axios.get(this.configuration.host + url, Common.getHeaders(headers))
      .then(({data}) => Promise.resolve(data));
  }