Popularity
1.1
Growing
Activity
0.0
Stable
4
2
0
Monthly Downloads: 2
Programming language: Elixir
License: MIT License
Tags:
Third Party APIs
Latest version: v3.0.0
balanced alternatives and similar packages
Based on the "Third Party APIs" category.
Alternatively, view balanced alternatives based on common mentions on social networks and blogs.
-
MongoosePush
MongoosePush is a simple Elixir RESTful service allowing to send push notification via FCM and/or APNS. -
sparkpost
SparkPost client library for Elixir https://developers.sparkpost.com -
elixtagram
:camera: Instagram API client for the Elixir language (elixir-lang) -
google_sheets
Elixir library for fetching Google Spreadsheet data in CSV format -
amazon_product_advertising_client
An Amazon Product Advertising API client for Elixir -
pay_pal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang) -
cashier
Cashier is an Elixir library that aims to be an easy to use payment gateway, whilst offering the fault tolerance and scalability benefits of being built on top of Erlang/OTP -
elixir_ipfs_api
The Elixir library that is used to communicate with the IPFS REST endpoint. -
airbrake
An Elixir notifier to the Airbrake/Errbit. System-wide error reporting enriched with the information from Plug and Phoenix channels.
Learn Elixir in as little as 12 Weeks
A structured learning environment with practical assignments, code reviews, weekly live coaching sessions, job-hunting assistance, and more. Try a Free Preview today!
Promo
learn-elixir.dev
Do you think we are missing an alternative of balanced or a related project?
README
Balanced-Elixir
Balanced API v1.1 Client for Elixir
Usage:
use the following:
{:balanced, "~> 3.1.0"}
Usage:
#looks for an application variable in the `:balanced` app named `:secret_key` or an environment variable named BALANCED_SECRET_KEY
{:ok, balanced} = Balanced.new
#alternatively, you can pass in the secret key as well
{:ok, balanced} = Balanced.new("my_secret_key")
#then pass in the balanced pid when calling functions
{status, response} = Balanced.BankAccounts.get(balanced, bank_account_id)
status is either :ok
or :error
response is a Map converted from the json response from Balanced.
Information about the balanced api can be found at http://docs.balancedpayments.com/1.1/api/
All calls return either {:ok, response} or {:error, response} where response is a map of the Balanced API response