Last active
December 15, 2022 15:26
-
-
Save buzzdecafe/a6bafa81e138cc8f29616ce8abf0467b to your computer and use it in GitHub Desktop.
cURL recurly API
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# recurly does not document using cURL to access their API, they really want you to use their libraries. | |
# Sometimes i need to test something quick. I do not want to write a script importing your stupid library. | |
# So here's how you do it: | |
APIKEY=<get your API key from your recurly.com site> | |
curl -H "Accept: application/vnd.recurly.v2021-02-25+json" -u $APIKEY: https://v3.recurly.com/accounts |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment