Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tschf/pafs
- Owner: tschf
- License: mit
- Created: 2016-02-25T23:19:35.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-26T00:22:57.000Z (almost 9 years ago)
- Last Synced: 2023-03-24T06:34:32.979Z (almost 2 years ago)
- Language: PLSQL
- Size: 1.95 KB
- Stars: 3
- Watchers: 4
- 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
beginstripe_api.set_secret('[secret removed]');
stripe_api.charge_card(
p_amount => 300
, p_source => '[token_removed]'
, p_description => '..'
);end;
```