Skip to content

Elixir wrapper for the Appfigures API

Notifications You must be signed in to change notification settings

elfenlaid/ex_figures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

ExFigures

Hex pm Hex pm

Elixir wrapper for Appfigures API based on Tesla library.

Appfigures provides a RESTful way to interact with reports and account data. More about API.

Client Usage Example

Setup ExFigures client:

client = ExFigures.client(
  username: "username",
  password: "password",
  client_key: "key"
)

And proceed to querying:

{:ok, response} = ExFigures.Products.list_mine(client)
response.status # => 200
response.body # => [%{...}, ...]

Installation

If available in Hex, the package can be installed by adding ex_figures to your list of dependencies in mix.exs:

def deps do
  [
    {:ex_figures, "~> 0.1.0"}
  ]
end

Documentation

Documentation be found at https://hexdocs.pm/ex_figures.

Resources

About

Elixir wrapper for the Appfigures API

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published