I'm trying to integrate a simple (well I thought so...) Stripe API REST into aware IM.
Basically, when a new user signs up, I want it to create a stripe customer.
I've got the cURL code:
https://api.stripe.com/v1/customers \
-u sk_test_aaaa \
-d description="My First Test Customer (created for API docs)"
When submitting the process, its coming up with the error "Service provider returned the following error: { "error": { "message": "You did not provide an API key. You need to provide your API key in the Authorization header, using Bearer auth (e.g. 'Authorization: Bearer YOUR_SECRET_KEY'). See https://stripe.com/docs/api#authentication for details, or we can help at https://support.stripe.com/.", "type": "invalid_request_error" }}"
I have used the "Request HTTP Headers" in the REST settings as instructed, but still no luck.
I'm pretty sure I'll able to integrate attributes, I just can't seem to get past the Authentication
Anyone got any ideas or done this before?