put (resourceUri, payload) {
    return axios.put(`${baseUrl}/${resourceUri}`, payload, {
      headers: this.headers
    }).then(responseWith).catch(responseErrWith)
  }