Questions tagged [gocardless]

The gocardless tag relates to the recurring bank-to-bank payment processing API provided by GoCardless.

This tag should be used for questions regarding the GoCardless API and their provided client libraries:

44 questions
3
votes
1 answer

GoCardless Event Won't Deserialise

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…
Gavin Coates
  • 1,366
  • 1
  • 20
  • 44
3
votes
1 answer

ES6 -- importing of es5 files

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…
Georg Heiler
  • 16,916
  • 36
  • 162
  • 292
2
votes
1 answer

Uncaught exception 'Exception' with message 'Option `access_token` can only be a string.'

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…
Designer
  • 477
  • 2
  • 12
2
votes
1 answer

How to capture a GoCardless redirect sent back by Go Cardless to my website once the direct debit mandate has been accepted?

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…
Addi
  • 199
  • 14
2
votes
0 answers

Gocardless Webhook implementation in Laravel

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, …
Reshma
  • 189
  • 2
  • 5
  • 18
2
votes
2 answers

Implement Gocardless webhook in Laravel

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',…
Reshma
  • 189
  • 2
  • 5
  • 18
2
votes
1 answer

Retrieve company name with GoCardless webhook

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…
Adrien M.
  • 33
  • 5
2
votes
1 answer

Cannot set MIME type using RestSharp and GoCardless

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,…
2
votes
3 answers

GoCardless SDK "requires a later version of the .NET Framework than the one specified in the project" (ASP.NET 3.5, Visual Studio 2010)

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…
Dylan Beattie
  • 53,688
  • 35
  • 128
  • 197
2
votes
3 answers

Retrieve Error Message with array

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…
David Passmore
  • 6,089
  • 4
  • 46
  • 70
1
vote
1 answer

Payouts endopoint gocardless pro client php not working fine

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…
1
vote
0 answers

GoCardless setup Direct Debit mandate and subscription at the same time

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" =>…
MrCarrot
  • 2,546
  • 1
  • 23
  • 29
1
vote
1 answer

Use GoCardless payments with Zapier

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:…
1
vote
2 answers

GoCardless Subscription process via API and redirect_flow

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…
Chunks
  • 13
  • 3
1
vote
2 answers

GoCardless API - List Subscriptions

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…
Designer
  • 477
  • 2
  • 12
1
2 3