aboutsummaryrefslogtreecommitdiff
path: root/lib/account.ex
blob: 586d2744babefd3431c5c572709a059436d73ca5 (plain)
1
2
3
4
5
6
7
8
9
10
defmodule Mailchimp.Account do
  import Mailchimp.HTTPClient

  def get_details(config) do
    map_header = %{"Authorization" => "apikey #{config.apikey}"}
    url = config.apiroot
    get(url, map_header)
  end

end