mirror of
https://github.com/avitex/elixir-vultr
synced 2024-11-21 10:59:57 +00:00
Simple wrapper for the Vultr API
lib | ||
test | ||
.gitignore | ||
.travis.yml | ||
mix.exs | ||
mix.lock | ||
README.md |
Vultr
Simple wrapper for the Vultr API.
Documentation hosted on hexdocs.
Installation
Add vultr
to your list of dependencies in mix.exs
:
def deps do
[{:vultr, "~> 0.1.0"}]
end
Examples
Retrieving app list
Vultr.app_list()
# Example response
%{
body: %{ "1" => %{"APPID" => "1", "deploy_name" => "LEMP on CentOS 6 x64", ... }, ... },
headers: %{ "content-type" => "application/json", ... },
method: :get,
opts: [],
query: [],
status: 200,
url: "https://api.vultr.com/v1/app/list"
}
Using authenticated methods
client = Vultr.client("<APIKEY>")
Vultr.server_list(client, %{})