https://github.com/zensavona/paypal
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang)
https://github.com/zensavona/paypal
billing elixir elixir-phoenix payments paypal paypal-rest-api
Last synced: 25 days ago
JSON representation
:money_with_wings: PayPal REST API client for the Elixir language (elixir-lang)
- Host: GitHub
- URL: https://github.com/zensavona/paypal
- Owner: Zensavona
- Created: 2017-05-07T00:33:51.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2025-03-25T03:57:17.000Z (30 days ago)
- Last Synced: 2025-03-25T04:28:11.114Z (30 days ago)
- Topics: billing, elixir, elixir-phoenix, payments, paypal, paypal-rest-api
- Language: Elixir
- Homepage: https://hex.pm/packages/pay_pal
- Size: 65.4 KB
- Stars: 37
- Watchers: 3
- Forks: 23
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- freaking_awesome_elixir - Elixir - Elixir library for working with the PayPal REST API. (Third Party APIs)
- fucking-awesome-elixir - pay_pal - Elixir library for working with the PayPal REST API. (Third Party APIs)
- awesome-elixir - pay_pal - Elixir library for working with the PayPal REST API. (Third Party APIs)
README
# PayPal
### Elixir library for working with the PayPal REST API.
[](https://travis-ci.org/Zensavona/PayPal) [](http://inch-ci.org/github/zensavona/PayPal) [](https://hexdocs.pm/pay_pal) [](https://coveralls.io/github/Zensavona/PayPal?branch=master) [](https://beta.hexfaktor.org/github/Zensavona/PayPal) [](https://hex.pm/packages/pay_pal) [](https://hex.pm/packages/pay_pal) [](http://opensource.org/licenses/MIT)
This is in development, currently the following parts of the API are working:
- access token rotation on expiry
- Billing Plans
- Billing Agreements
- Payments
- PayoutsThese work fine and I am using them in production, they have test coverage. Check out the docs :)
# Installation
Add `:pay_pal` as a dependency to your project's `mix.exs`:
```elixir
defp deps do
[
{:pay_pal, "~> 0.0.7"}
]
end
```Configure your settings in your configuration files:
```elixir
config :pay_pal,
client_id: "your_paypal_client_id",
client_secret: "your_paypal_secret",
environment: :sandbox
```