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' =>…
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…
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…
I have my code in PHP which is returning this Array of data:
GoCardlessPro\Core\ListResponse Object
(
[records] => Array
(
[0] => GoCardlessPro\Resources\Mandate Object
(
…
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…
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…
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"
}],
…
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…
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…
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,
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…
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…
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…
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…
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.