I'm trying to implement the new GoCardless API, but I'm having trouble handling webhooks.
i've read the response to a string, by doing:
Stream req = Request.InputStream;
req.Seek(0, System.IO.SeekOrigin.Begin);
string requestContent = new…
I try to use this (https://github.com/gocardless/es6-angularjs/blob/master/README.md) as a starting point and then include the bootstrap javascript code. In order to open a modal
But the only thing that happens is:
Potentially unhandled rejection…
I have followed the GoCardless API 'Getting Started' instructions exactly but getting this error when trying to run a simple script
"Uncaught exception 'Exception' with message 'Option access_token can only be a string.'"
require…
This is my CustomerController which gets a checklist of customers to be sent the direct debit mandate with their details that I already have on database. Once the customer fills in the mandate Gocardless sends a redirect uri to the setting…
I'm testing using Webhooks for the first time. I want to set up a Webhook (using GoCardless.com).
I have created a acces token and Webhook endpoints in my sandbox account.
URL-http://test.com/remote_gocardless
My route is,
…
I was trying to implement a webhook in laravel.
I have created access token and created webhook endpoint also.
my webhook end point is like,https://www.example.com/gocardless.php
and my route is like,
Route::get('/gocardless.php',…
I'm using GoCardless (sandbox account) webhook for a billing project. I want to recover the clients who choose to pay with GoCardless. The problem is that in the JSON that I get from GoCardless there is no such information.
I need the company name…
Using C#, .Net 4,5, RestSharp v4.0.3
Attempting to create an api_key in GoCardless
I create a RestClient like this:
var client = new RestClient();
client.BaseUrl = SandboxBaseUrl;
client.Authenticator = new HttpBasicAuthenticator(apiKeyId,…
UPDATE 201521011559: I'm wondering if this is caused by an error in the dependency specifications in the .nuspec file used to build the package...
The .nuspec file for the client SDK is on GoCardless' GitHub…
I have using a version of GoCardless's API in PHP to process payments on my website. However when their API returns an error I would like to display the user more effective errors.
I have got half way there but I was wondering if there is anyway I…
i'm trying to take my payouts between specific dates, but ut seems not working:
$params = [
'created_at' => 'between',
'created_at_gte' => (new DateTime('2023-03-31 22:00:00'))->format('Y-m-d\TH:i:s.u\Z'),
'created_at_lte' => (new…
I'm using PHP to setup a Direct Debit Mandate via the GoCardless API, but I cannot figure out how to automatically setup a subscription against that mandate.
First I create a billing request:
$br = $client->billingRequests()->create([
"params" =>…
I'm trying to use Zapier to update Google Sheets with payment information from GoCardless. I can't see anything in the received event webhook that I can use to match a payment to a customer though.
events:
1:
id: EVTExxx8B
created_at:…
I am successfully creating the customer and the subscription via the API using the redirect_flow method BUT:
There are no payments being paid/setup as far as I can tell using this process
If I don't add a start date it says the DD starts on the…
I am using the GoCardless Documentation here to try list all subscriptions for a customer.
I have followed the instructions as you can see below, however nothing at all is displaying when I run this script - does anyone know what I may have done…