Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tschf/pafs

PL/SQL API for Stripe
https://github.com/tschf/pafs

Last synced: 3 days ago
JSON representation

PL/SQL API for Stripe

Awesome Lists containing this project

README

        

# PL/SQL API for Stripe

This API is used to charge cards from an APEX application. Basic usage:

```plsql
begin

stripe_api.set_secret('[secret removed]');

stripe_api.charge_card(
p_amount => 300
, p_source => '[token_removed]'
, p_description => '..'
);

end;
```