static put(url, body = {}, headers = {}) {
    if (!url) throw new Error('Base.put: a URL is required.')
    return request(url, 'PUT', body, headers)
  }