https://github.com/tschf/pafs
PL/SQL API for Stripe
https://github.com/tschf/pafs
Last synced: 4 months ago
JSON representation
PL/SQL API for Stripe
- Host: GitHub
- URL: https://github.com/tschf/pafs
- Owner: tschf
- License: mit
- Created: 2016-02-25T23:19:35.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-02-26T00:22:57.000Z (over 10 years ago)
- Last Synced: 2025-03-03T00:25:19.198Z (over 1 year ago)
- Language: PLSQL
- Size: 1.95 KB
- Stars: 3
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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;
```