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

PHP Split string from api reference

I am using the GoCardless API to get a customers bank account name and last two digits of their account number. I have followed their guide and pulling back the deatails: Code 'access_token' => 'XXXXX-XXXXX', 'environment' =>…
Vogal
  • 104
  • 6
1
vote
1 answer

Gocardless implementation in codeigniter

I'm setting up a payment gateway using Gocardless API. I've tried to download and set it up manually, since I don't have composer. This is a piece of code that I got from the documentation: require_once…
GSA
  • 21
  • 4
1
vote
1 answer

GoCardless API using Classic ASP

I'm creating the following request in vbscript and sending to the gocardless sandbox: url="https://api-sandbox.gocardless.com/" typ="GET" Set xml = Server.CreateObject("MSXML2.ServerXMLHTTP") xml.Open typ, url, False xml.setRequestHeader…
Amos Fox
  • 308
  • 1
  • 10
1
vote
4 answers

PHP read first item in object array

I have my code in PHP which is returning this Array of data: GoCardlessPro\Core\ListResponse Object ( [records] => Array ( [0] => GoCardlessPro\Resources\Mandate Object ( …
charlie
  • 415
  • 4
  • 35
  • 83
1
vote
0 answers

GoCardless - Create a bill under a pre-auth - Reponse

I am creating a bill under a pre-auth using PHP from GoCardless. According to their documentation the response will return a bill object. I have to check some special logic depending on the pass or failure of the payment. Does anybody know what…
masterFly
  • 1,072
  • 12
  • 24
1
vote
0 answers

gocardless webhook signature mismatch

I am going through the gocardless getting started guide, but when I try to setup a webhook (sandbox mode), I don't get the correct value. The code is copy-pasted from…
xijo
  • 4,366
  • 4
  • 23
  • 30
1
vote
1 answer

Create customer in GoCardless sandbox returns 403 forbidden

I am attempting to use the GoCardless API sandbox to create a customer but only get a 403 forbidden error {"error": { "message": "Forbidden request", "errors": [ { "reason": "forbidden", "message": "Forbidden request" }], …
ignition22
  • 11
  • 2
1
vote
2 answers

gocardless PHP hmac signature not match

I'm working with gocardless hooks , and i'm stuck on validating hmac signature with sandbox environment. So I generated webhook test in sandbox and it gives to me the request body and headers as it has sent. So as far as i understand , i must get…
Joaquin Javi
  • 880
  • 7
  • 12
1
vote
1 answer

Loading GoCardless SDK with require not working

When I try and load the GoCardless SDK and appy the congfig as sated in the documentation nodejs throws me the following error: var gocardless = require('gocardless')(gcConfig); ^ TypeError: require(...) is not a…
user5431121
1
vote
1 answer

how to use gocardless.com with django

I have to use gocardless payment gateway with Django, How can I use this with my project. are there any good django packages ,which support this latest gocardless payments,
user2088432
  • 375
  • 1
  • 4
  • 17
1
vote
1 answer

Go Cardless API - how to know who has subscriptions

Very quick and simple question for anyone who has used go-cardless before. I have read the docs (I think - may have missed this :-P) and am just struggling with one point: New Pre-authorisation sent - fine Return to my server - fine However - from…
GrahamTheDev
  • 22,724
  • 2
  • 32
  • 64
1
vote
2 answers

GoCardless webhook

I use gocardless gateway to process payments. I used to rely on web hooks when I use any kind of payment gateway. But I feel myself exposed using gocardless and here is the cause: as I see there is no way to connect payment with the application…
FUT
  • 373
  • 2
  • 17
0
votes
0 answers

Trouble Iterating through a dictionary

I am using the GoCardless API and I'm trying to print all the customer records. The code is iterating through each record and I'm successfully pulling data. woop. The issue I have is when trying to pull custom fields these are listed as metadata but…
0
votes
0 answers

GoCardless Node API error in Angular 12 app

Trying to use the gocardless-nodejs api module on an Angular 12 app, and followed the instructions. Importing the module as follows: const gocardless = require('gocardless-nodejs'); const constants = require("gocardless-nodejs/constants"); Then…
tigerdi
  • 612
  • 7
  • 13
0
votes
1 answer

GoCardless API access with self signed certificate

I have a Laravel project in which I'm using the GoCardless API with the PHP Client wrapper from https://github.com/gocardless/gocardless-pro-php. I have set it up very simply like so.
Jesse Luke Orange
  • 1,949
  • 3
  • 29
  • 71