{
"PaymentStatus": "CANCELED"
}
<?php
require_once 'vendor/autoload.php';
use MangoPay\MangoPayApi;
use MangoPay\Libraries\ResponseException as MGPResponseException;
use MangoPay\Libraries\Exception as MGPException;
$api = new MangoPayApi();
$api->Config->ClientId = 'your-client-id';
$api->Config->ClientPassword = 'your-api-key';
$api->Config->TemporaryFolder = 'tmp/';
try {
$preauthId = 'preauth_m_01JH0PDQS1WT444DJE8VB7F848';
$preauth = $api->CardPreAuthorizations->Get($preauthId);
$preauth->PaymentStatus = CardPreAuthorizationPaymentStatus::Canceled;
// $preauth->PaymentStatus = CardPreAuthorizationPaymentStatus::Validated;
$cancelPreauth = $api->CardPreAuthorizations->Update($preauth);
// $validatePreauth = $api->CardPreAuthorizations->Update($preauth);
print_r($cancelPreauth);
} catch(MGPResponseException $e) {
print_r($e);
} catch(MGPException $e) {
print_r($e);
}
const mangopayInstance = require('mangopay4-nodejs-sdk')
const mangopay = new mangopayInstance({
clientId: 'your-client-id',
clientApiKey: 'your-api-key',
})
// To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
let myPreauthorization = {
Id: '192870038',
PaymentStatus: 'CANCELED',
}
const cancelPreauthorization = async (preauthorization) => {
return await mangopay.CardPreAuthorizations.update(preauthorization)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
cancelPreauthorization(myPreauthorization)
// To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
let myPreauthorization = {
Id: '192870038',
PaymentStatus: 'VALIDATED',
}
const validatePreauthorization = async (preauthorization) => {
return await mangopay.CardPreAuthorizations.update(preauthorization)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
validatePreauthorization(myPreauthorization)
require 'mangopay'
MangoPay.configure do |client|
client.preproduction = true
client.client_id = 'your-client-id'
client.client_apiKey = 'your-api-key'
client.log_file = File.join(Dir.pwd, 'mangopay.log')
end
# To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
def validatePreauthorization(preauthorizationId, preauthorizationObject)
begin
response = MangoPay::PreAuthorization.update(preauthorizationId, preauthorizationObject)
puts response
return response
rescue MangoPay::ResponseError => error
puts "Failed to update preauthorization: #{error.message}"
puts "Error details: #{error.details}"
return false
end
end
myPreauthorization = {
Id: '195059241',
PaymentStatus: 'VALIDATED'
}
validatePreauthorization(myPreauthorization[:Id], myPreauthorization)
# To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
def cancelPreauthorization(preauthorizationId, preauthorizationObject)
begin
response = MangoPay::PreAuthorization.update(preauthorizationId, preauthorizationObject)
puts response
return response
rescue MangoPay::ResponseError => error
puts "Failed to update preauthorization: #{error.message}"
puts "Error details: #{error.details}"
return false
end
end
myPreauthorization = {
Id: '198156939',
PaymentStatus: 'CANCELED'
}
cancelPreauthorization(myPreauthorization[:Id], myPreauthorization)
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.mangopay.MangoPayApi;
import com.mangopay.core.enumerations.PaymentStatus;
import com.mangopay.entities.CardPreAuthorization;
public class CancelPreauthorization {
public static void main(String[] args) throws Exception {
MangoPayApi mangopay = new MangoPayApi();
mangopay.getConfig().setClientId("your-client-id");
mangopay.getConfig().setClientPassword("your-api-key");
CardPreAuthorization preauthorization = mangopay.getCardPreAuthorizationApi().get("preauth_m_01J1Z336RKEZ0MF2YR26JPZCC5");
preauthorization.setPaymentStatus(PaymentStatus.CANCELED);
CardPreAuthorization cancelPreauthorization = mangopay.getCardPreAuthorizationApi().update(preauthorization);
Gson prettyPrint = new GsonBuilder().setPrettyPrinting().create();
String prettyJson = prettyPrint.toJson(cancelPreauthorization);
System.out.println(prettyJson);
}
}
from pprint import pprint
import mangopay
mangopay.client_id='your-client-id'
mangopay.apikey='your-api-key'
from mangopay.api import APIRequest
handler = APIRequest(sandbox=True)
from mangopay.resources import PreAuthorization
# To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
card_preauthorization = PreAuthorization(
id = 'preauth_m_01HPHJDFSZWD7BN2MRF0YTHM40',
payment_status = 'VALIDATED'
)
validate_preauthorization = card_preauthorization.save()
pprint(validate_preauthorization)
# To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
card_preauthorization = PreAuthorization(
id = 'preauth_m_01HPHJDFSZWD7BN2MRF0YTHM40',
payment_status = 'CANCEL'
)
cancel_preauthorization = card_preauthorization.save()
pprint(cancel_preauthorization)
using MangoPay.SDK;
using MangoPay.SDK.Core.Enumerations;
using MangoPay.SDK.Entities.PUT;
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
MangoPayApi api = new MangoPayApi();
api.Config.ClientId = "your-client-id";
api.Config.ClientPassword = "your-api-key";
var preauthorizationId = "preauth_m_01J30N3GJ8WK0C7DSGR6BKHARE";
var preauthorization = await api.CardPreAuthorizations.GetAsync(preauthorizationId);
var preauthorizationPut = new CardPreAuthorizationPutDTO
{
PaymentStatus = PaymentStatus.CANCELED,
Tag = "Updated using the Mangopay .NET SDK"
};
var cancelPreauthorization = await api.CardPreAuthorizations.UpdateAsync(preauthorizationPut, preauthorizationId);
string prettyPrint = JsonConvert.SerializeObject(cancelPreauthorization, Formatting.Indented);
Console.WriteLine(prettyPrint);
}
}
{
"Id": "156686431",
"Tag": null,
"CreationDate": 1669116461,
"AuthorId": "156671912",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 500
},
"RemainingFunds": {
"Currency": "EUR",
"Amount": 0
},
"AuthorizationDate": 1669116472,
"Status": "SUCCEEDED",
"PaymentStatus": "CANCELED",
"ExpirationDate": 1669678072,
"PayInId": null,
"ResultCode": "000000",
"ResultMessage": "Success",
"SecureMode": "FORCE",
"CardId": "156674899",
"SecureModeReturnURL": "http://example.com?preAuthorizationId=156686431",
"SecureModeRedirectURL": null,
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"SecurityInfo": {
"AVSResult": "NO_CHECK"
},
"MultiCapture": true,
"BrowserInfo": {
"AcceptHeader": "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8",
"JavaEnabled": true,
"Language": "FR-FR",
"ColorDepth": 4,
"ScreenHeight": 1800,
"ScreenWidth": 400,
"TimeZoneOffset": 60,
"UserAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"JavascriptEnabled": true
},
"IpAddress": "80.236.38.245",
"Billing": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Shipping": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": "V2_1",
"PreferredCardNetwork": null,
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"Brand": "VISA",
"SubType": null
}
}
{
"Id": "156686696",
"Tag": null,
"CreationDate": 1669116896,
"AuthorId": "156671912",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 500
},
"RemainingFunds": {
"Currency": "EUR",
"Amount": 0
},
"AuthorizationDate": 1669116904,
"Status": "SUCCEEDED",
"PaymentStatus": "VALIDATED",
"ExpirationDate": 1669678504,
"PayInId": "156686722",
"ResultCode": "000000",
"ResultMessage": "Success",
"SecureMode": "FORCE",
"CardId": "156674899",
"SecureModeReturnURL": "http://example.com?preAuthorizationId=156686696",
"SecureModeRedirectURL": null,
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"SecurityInfo": {
"AVSResult": "NO_CHECK"
},
"MultiCapture": true,
"BrowserInfo": {
"AcceptHeader": "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8",
"JavaEnabled": true,
"Language": "FR-FR",
"ColorDepth": 4,
"ScreenHeight": 1800,
"ScreenWidth": 400,
"TimeZoneOffset": 60,
"UserAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"JavascriptEnabled": true
},
"IpAddress": "80.236.38.245",
"Billing": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Shipping": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": "V2_1",
"PreferredCardNetwork": null,
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"Brand": "VISA",
"SubType": null
}
}
Preauthorizations
Cancel or validate a Preauthorization
PUT
/
v2.01
/
{ClientId}
/
preauthorizations
/
{PreauthorizationId}
{
"PaymentStatus": "CANCELED"
}
<?php
require_once 'vendor/autoload.php';
use MangoPay\MangoPayApi;
use MangoPay\Libraries\ResponseException as MGPResponseException;
use MangoPay\Libraries\Exception as MGPException;
$api = new MangoPayApi();
$api->Config->ClientId = 'your-client-id';
$api->Config->ClientPassword = 'your-api-key';
$api->Config->TemporaryFolder = 'tmp/';
try {
$preauthId = 'preauth_m_01JH0PDQS1WT444DJE8VB7F848';
$preauth = $api->CardPreAuthorizations->Get($preauthId);
$preauth->PaymentStatus = CardPreAuthorizationPaymentStatus::Canceled;
// $preauth->PaymentStatus = CardPreAuthorizationPaymentStatus::Validated;
$cancelPreauth = $api->CardPreAuthorizations->Update($preauth);
// $validatePreauth = $api->CardPreAuthorizations->Update($preauth);
print_r($cancelPreauth);
} catch(MGPResponseException $e) {
print_r($e);
} catch(MGPException $e) {
print_r($e);
}
const mangopayInstance = require('mangopay4-nodejs-sdk')
const mangopay = new mangopayInstance({
clientId: 'your-client-id',
clientApiKey: 'your-api-key',
})
// To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
let myPreauthorization = {
Id: '192870038',
PaymentStatus: 'CANCELED',
}
const cancelPreauthorization = async (preauthorization) => {
return await mangopay.CardPreAuthorizations.update(preauthorization)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
cancelPreauthorization(myPreauthorization)
// To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
let myPreauthorization = {
Id: '192870038',
PaymentStatus: 'VALIDATED',
}
const validatePreauthorization = async (preauthorization) => {
return await mangopay.CardPreAuthorizations.update(preauthorization)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
validatePreauthorization(myPreauthorization)
require 'mangopay'
MangoPay.configure do |client|
client.preproduction = true
client.client_id = 'your-client-id'
client.client_apiKey = 'your-api-key'
client.log_file = File.join(Dir.pwd, 'mangopay.log')
end
# To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
def validatePreauthorization(preauthorizationId, preauthorizationObject)
begin
response = MangoPay::PreAuthorization.update(preauthorizationId, preauthorizationObject)
puts response
return response
rescue MangoPay::ResponseError => error
puts "Failed to update preauthorization: #{error.message}"
puts "Error details: #{error.details}"
return false
end
end
myPreauthorization = {
Id: '195059241',
PaymentStatus: 'VALIDATED'
}
validatePreauthorization(myPreauthorization[:Id], myPreauthorization)
# To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
def cancelPreauthorization(preauthorizationId, preauthorizationObject)
begin
response = MangoPay::PreAuthorization.update(preauthorizationId, preauthorizationObject)
puts response
return response
rescue MangoPay::ResponseError => error
puts "Failed to update preauthorization: #{error.message}"
puts "Error details: #{error.details}"
return false
end
end
myPreauthorization = {
Id: '198156939',
PaymentStatus: 'CANCELED'
}
cancelPreauthorization(myPreauthorization[:Id], myPreauthorization)
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.mangopay.MangoPayApi;
import com.mangopay.core.enumerations.PaymentStatus;
import com.mangopay.entities.CardPreAuthorization;
public class CancelPreauthorization {
public static void main(String[] args) throws Exception {
MangoPayApi mangopay = new MangoPayApi();
mangopay.getConfig().setClientId("your-client-id");
mangopay.getConfig().setClientPassword("your-api-key");
CardPreAuthorization preauthorization = mangopay.getCardPreAuthorizationApi().get("preauth_m_01J1Z336RKEZ0MF2YR26JPZCC5");
preauthorization.setPaymentStatus(PaymentStatus.CANCELED);
CardPreAuthorization cancelPreauthorization = mangopay.getCardPreAuthorizationApi().update(preauthorization);
Gson prettyPrint = new GsonBuilder().setPrettyPrinting().create();
String prettyJson = prettyPrint.toJson(cancelPreauthorization);
System.out.println(prettyJson);
}
}
from pprint import pprint
import mangopay
mangopay.client_id='your-client-id'
mangopay.apikey='your-api-key'
from mangopay.api import APIRequest
handler = APIRequest(sandbox=True)
from mangopay.resources import PreAuthorization
# To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
card_preauthorization = PreAuthorization(
id = 'preauth_m_01HPHJDFSZWD7BN2MRF0YTHM40',
payment_status = 'VALIDATED'
)
validate_preauthorization = card_preauthorization.save()
pprint(validate_preauthorization)
# To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
card_preauthorization = PreAuthorization(
id = 'preauth_m_01HPHJDFSZWD7BN2MRF0YTHM40',
payment_status = 'CANCEL'
)
cancel_preauthorization = card_preauthorization.save()
pprint(cancel_preauthorization)
using MangoPay.SDK;
using MangoPay.SDK.Core.Enumerations;
using MangoPay.SDK.Entities.PUT;
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
MangoPayApi api = new MangoPayApi();
api.Config.ClientId = "your-client-id";
api.Config.ClientPassword = "your-api-key";
var preauthorizationId = "preauth_m_01J30N3GJ8WK0C7DSGR6BKHARE";
var preauthorization = await api.CardPreAuthorizations.GetAsync(preauthorizationId);
var preauthorizationPut = new CardPreAuthorizationPutDTO
{
PaymentStatus = PaymentStatus.CANCELED,
Tag = "Updated using the Mangopay .NET SDK"
};
var cancelPreauthorization = await api.CardPreAuthorizations.UpdateAsync(preauthorizationPut, preauthorizationId);
string prettyPrint = JsonConvert.SerializeObject(cancelPreauthorization, Formatting.Indented);
Console.WriteLine(prettyPrint);
}
}
{
"Id": "156686431",
"Tag": null,
"CreationDate": 1669116461,
"AuthorId": "156671912",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 500
},
"RemainingFunds": {
"Currency": "EUR",
"Amount": 0
},
"AuthorizationDate": 1669116472,
"Status": "SUCCEEDED",
"PaymentStatus": "CANCELED",
"ExpirationDate": 1669678072,
"PayInId": null,
"ResultCode": "000000",
"ResultMessage": "Success",
"SecureMode": "FORCE",
"CardId": "156674899",
"SecureModeReturnURL": "http://example.com?preAuthorizationId=156686431",
"SecureModeRedirectURL": null,
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"SecurityInfo": {
"AVSResult": "NO_CHECK"
},
"MultiCapture": true,
"BrowserInfo": {
"AcceptHeader": "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8",
"JavaEnabled": true,
"Language": "FR-FR",
"ColorDepth": 4,
"ScreenHeight": 1800,
"ScreenWidth": 400,
"TimeZoneOffset": 60,
"UserAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"JavascriptEnabled": true
},
"IpAddress": "80.236.38.245",
"Billing": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Shipping": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": "V2_1",
"PreferredCardNetwork": null,
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"Brand": "VISA",
"SubType": null
}
}
{
"Id": "156686696",
"Tag": null,
"CreationDate": 1669116896,
"AuthorId": "156671912",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 500
},
"RemainingFunds": {
"Currency": "EUR",
"Amount": 0
},
"AuthorizationDate": 1669116904,
"Status": "SUCCEEDED",
"PaymentStatus": "VALIDATED",
"ExpirationDate": 1669678504,
"PayInId": "156686722",
"ResultCode": "000000",
"ResultMessage": "Success",
"SecureMode": "FORCE",
"CardId": "156674899",
"SecureModeReturnURL": "http://example.com?preAuthorizationId=156686696",
"SecureModeRedirectURL": null,
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"SecurityInfo": {
"AVSResult": "NO_CHECK"
},
"MultiCapture": true,
"BrowserInfo": {
"AcceptHeader": "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8",
"JavaEnabled": true,
"Language": "FR-FR",
"ColorDepth": 4,
"ScreenHeight": 1800,
"ScreenWidth": 400,
"TimeZoneOffset": 60,
"UserAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"JavascriptEnabled": true
},
"IpAddress": "80.236.38.245",
"Billing": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Shipping": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": "V2_1",
"PreferredCardNetwork": null,
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"Brand": "VISA",
"SubType": null
}
}
This call is used to manually close the preauthorization hold period before the
ExpirationDate, thereby releasing the preauthorized funds.
The PaymentStatus can be set to:
CANCELEDwhen no preauthorized pay-ins have been made to capture funds. Trying to cancel a used preauthorization returns an error.VALIDATEDwhen at least one preauthorized pay-in has been made to capture funds. Trying to validate an unused preauthorization returns an error.
Caution – Canceling or validating a preauthorization is irreversibleA preauthorization with the
CANCELED or VALIDATED status can’t be reused.Path parameters
string
required
The unique identifier of the preauthorization.
Body parameters
string
required
Allowed values:
CANCELED, VALIDATEDThe status of the preauthorization object:WAITING– The remaining preauthorized funds can be captured by making one or several preauthorized pay-ins. Pay-ins can only be made against a preauthorization with theWAITINGstatus.CANCELED– The preauthorization was canceled manually before any preauthorized pay-ins were made, or it was canceled automatically because the authorization failed.EXPIRED– The hold period on the preauthorized funds has ended without any preauthorized pay-ins taking place.VALIDATED– During the hold period: Indicates that all the preauthorized funds have been captured (RemainingFundsis zero) and no more preauthorized pay-ins can be made. After the hold period: Indicates that at least one capture was made during the hold period.
Responses
200 - Canceled (no captures)
200 - Canceled (no captures)
string
Max. length: 255 charactersThe unique identifier of the preauthorization.
string
Max. length: 255 charactersCustom data that you can add to this object.
For preauthorizations, you can use this parameter to identify corresponding information regarding the user or transaction on your platform.
For preauthorizations, you can use this parameter to identify corresponding information regarding the user or transaction on your platform.
Unix timestamp
The date and time at which the object was created.
string
The unique identifier of the user at the source of the transaction.
object
Information about the preauthorized funds.
Show properties
Show properties
string
Returned values: The three-letter ISO 4217 code (EUR, GBP, etc.) of a supported currency (depends on feature, contract, and activation settings).The currency of the preauthorized funds.
integer
An amount of money in the smallest sub-division of the currency (e.g., EUR 12.60 would be represented as
1260 whereas JPY 12 would be represented as just 12).object
Information about the remaining preauthorized funds.
Show properties
Show properties
string
Returned values: The three-letter ISO 4217 code (EUR, GBP, etc.) of a supported currency (depends on feature, contract, and activation settings).The currency of the preauthorized funds.
integer
An amount of money in the smallest sub-division of the currency (e.g., EUR 12.60 would be represented as
1260 whereas JPY 12 would be represented as just 12).Unix timestamp
The date and time at which successful authorization occurred. If authorization failed, the value is
null.string
Returned values:
CREATED, SUCCEEDED, FAILEDThe status of the authorization.string
Returned values:
WAITING, CANCELED, EXPIRED, VALIDATEDThe status of the preauthorization object:WAITING– The remaining preauthorized funds can be captured by making one or several preauthorized pay-ins. Pay-ins can only be made against a preauthorization with theWAITINGstatus.CANCELED– The preauthorization was canceled manually before any preauthorized pay-ins were made, or it was canceled automatically because the authorization failed.EXPIRED– The hold period on the preauthorized funds has ended without any preauthorized pay-ins taking place.VALIDATED– During the hold period: Indicates that all the preauthorized funds have been captured (RemainingFundsis zero) and no more preauthorized pay-ins can be made. After the hold period: Indicates that at least one capture was made during the hold period.
Unix timestamp
The date and time at which the hold period ends and the preauthorized funds are released.
At the expiration date, the preauthorization’s
At the expiration date, the preauthorization’s
PaymentStatus changes to EXPIRED if no captures were made or VALIDATED if at least one capture was made.string
The unique identifier of the pay-in.
string
The code indicating the result of the operation. This information is mostly used to handle errors or for filtering purposes.
string
The explanation of the result code.
string
Returned values:
DEFAULT, FORCE, NO_CHOICEThe mode applied for the 3DS2 protocol for CB, Visa, and Mastercard. The options are:DEFAULT– Requests an exemption to strong customer authentication (SCA), and thus a frictionless payment experience, if allowed by your Mangopay contract and accepted by the issuer.FORCE– Requests SCA.NO_CHOICE– Leaves the choice to the issuer whether to allow for a frictionless payment experience or to enforce SCA.
string
The unique identifier of the Card object, obtained during the card registration process.
string
Max. length: 255 charactersThe URL to which users are automatically returned after 3DS2 if it is triggered (i.e., if the
SecureModeNeeded parameter is set to true).string
Max. length: 255 charactersThe URL to which to redirect the user to proceed to 3DS2 validation.
boolean
Whether or not the
SecureMode was used.string
Returned values:
CARD, DIRECT_DEBIT, PREAUTHORIZED, BANK_WIREThe type of pay-in.string
Returned values:
WEB, DIRECT, EXTERNAL_INSTRUCTIONThe type of execution for the pay-in.string
Max. length: 10 characters; only alphanumeric and spacesCustom description to appear on the user’s bank statement along with the platform name. Different banks may show more or less information. See the Customizing bank statement references article for details.
string
Returned values: One of the supported languages in the ISO 639-1 format: DE, EN, ES, FR, IT, NL, PL, PT.The language in which the payment page is to be displayed.
object
Information regarding security and anti-fraud tools.
Show properties
Show properties
string
The result of the Address Verification System check (only available for UK, US, and Canada).
boolean
Default value: trueWhether multiple captures are activated for the preauthorization.
object
Information about the browser used by the end user (author) to perform the payment.
Show properties
Show properties
string
The exact content of the HTTP accept headers as sent to the platform from the end user’s browser.
boolean
Whether or not the end user’s browser has the ability to execute Java.
string
Format: Two-letter language code (ISO 639-1 alpha-2) followed by two-letter country code (ISO 3166-1 alpha-2), separated by a hyphen (example:
en-US; pattern:^[a-zA-Z]{2}(-[a-zA-Z]{2})?$)The language of the browser.integer
The value representing the depth of the screen’s color palette for displaying images, in bits per pixel.
integer
Max. length: 6 charactersThe height of the screen in pixels.
integer
Max. length: 6 charactersThe width of the screen in pixels.
integer
The difference in minutes between the browser’s timezone and UTC.
string
Max. length: 255 charactersThe exact content of the HTTP User-Agent header.
boolean
Whether or not the end user’s browser has the ability to execute JavaScript.
string
The IP address of the end user initiating the transaction, in IPV4 or IPV6 format.
object
Default value: FirstName, LastName, and Address information of the Shipping object if any, otherwise the user (author).Information about the end user billing address. If left empty, the default values will be automatically taken into account.
Show properties
Show properties
string
The first name of the user.
string
Max. length: 100 charactersThe last name of the user.
object
Information about the billing address.
Show properties
Show properties
string
Max. length: 255 charactersThe first line of the address.
string
Max. length: 255 charactersThe second line of the address.
string
Max. length: 255 charactersThe city of the address.
string
Max. length: 255 charactersThe region of the address. This field is optional except if the
Country is US, CA, or MX.string
Max. length: 255 charactersThe postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
string
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country of the address.
object
Default value: FirstName, LastName, and Address information of the Billing object, if supplied, otherwise of the user (author).Information about the end user’s shipping address. If left empty, the default values will be automatically taken into account.
Show properties
Show properties
string
The first name of the user.
string
Max. length: 100 charactersThe last name of the user.
object
Information about the shipping address.
Show properties
Show properties
string
Max. length: 255 charactersThe first line of the address.
string
Max. length: 255 charactersThe second line of the address.
string
Max. length: 255 charactersThe city of the address.
string
Max. length: 255 charactersThe region of the address. This field is optional except if the
Country is US, CA, or MX.string
Max. length: 255 charactersThe postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
string
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country of the address.
string
Returned values:
V1, V2_1The 3DS protocol version to be applied to the transaction.string | null
Returned values:
V1, V2_1The 3DS protocol version applied to the transaction.string
Returned values:
VISA, MASTERCARD, CB, MAESTROThe card network to use, as chosen by the cardholder, in case of co-branded cards.string
Information about the card used for the transaction.If the information or data is not available,
null is returned.Show properties
Show properties
string
The 6-digit bank identification number (BIN) of the card issuer.
string
The name of the card issuer.
string
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country where the card was issued.
string
Returned values:
DEBIT, CREDIT, CHARGE CARD.The type of card product.string
The card brand. Examples include:
AMERICAN EXPRESS, DISCOVER, JCB, MASTERCARD, VISA, etc.Note: The possible returned values are numerous and liable to evolve over time.string
The subtype of the card product. Examples include:
CLASSIC, GOLD, PLATINUM, PREPAID, etc.Note: The possible returned values are numerous and liable to evolve over time.200 - Validated following successful capture
200 - Validated following successful capture
string
Max. length: 255 charactersThe unique identifier of the preauthorization.
string
Max. length: 255 charactersCustom data that you can add to this object.
For preauthorizations, you can use this parameter to identify corresponding information regarding the user or transaction on your platform.
For preauthorizations, you can use this parameter to identify corresponding information regarding the user or transaction on your platform.
Unix timestamp
The date and time at which the object was created.
string
The unique identifier of the user at the source of the transaction.
object
Information about the preauthorized funds.
Show properties
Show properties
string
Returned values: The three-letter ISO 4217 code (EUR, GBP, etc.) of a supported currency (depends on feature, contract, and activation settings).The currency of the preauthorized funds.
integer
An amount of money in the smallest sub-division of the currency (e.g., EUR 12.60 would be represented as
1260 whereas JPY 12 would be represented as just 12).object
Information about the remaining preauthorized funds.
Show properties
Show properties
string
Returned values: The three-letter ISO 4217 code (EUR, GBP, etc.) of a supported currency (depends on feature, contract, and activation settings).The currency of the preauthorized funds.
integer
An amount of money in the smallest sub-division of the currency (e.g., EUR 12.60 would be represented as
1260 whereas JPY 12 would be represented as just 12).Unix timestamp
The date and time at which successful authorization occurred. If authorization failed, the value is
null.string
Returned values:
CREATED, SUCCEEDED, FAILEDThe status of the authorization.string
Returned values:
WAITING, CANCELED, EXPIRED, VALIDATEDThe status of the preauthorization object:WAITING– The remaining preauthorized funds can be captured by making one or several preauthorized pay-ins. Pay-ins can only be made against a preauthorization with theWAITINGstatus.CANCELED– The preauthorization was canceled manually before any preauthorized pay-ins were made, or it was canceled automatically because the authorization failed.EXPIRED– The hold period on the preauthorized funds has ended without any preauthorized pay-ins taking place.VALIDATED– During the hold period: Indicates that all the preauthorized funds have been captured (RemainingFundsis zero) and no more preauthorized pay-ins can be made. After the hold period: Indicates that at least one capture was made during the hold period.
Unix timestamp
The date and time at which the hold period ends and the preauthorized funds are released.
At the expiration date, the preauthorization’s
At the expiration date, the preauthorization’s
PaymentStatus changes to EXPIRED if no captures were made or VALIDATED if at least one capture was made.string
The unique identifier of the pay-in.
string
The code indicating the result of the operation. This information is mostly used to handle errors or for filtering purposes.
string
The explanation of the result code.
string
Returned values:
DEFAULT, FORCE, NO_CHOICEThe mode applied for the 3DS2 protocol for CB, Visa, and Mastercard. The options are:DEFAULT– Requests an exemption to strong customer authentication (SCA), and thus a frictionless payment experience, if allowed by your Mangopay contract and accepted by the issuer.FORCE– Requests SCA.NO_CHOICE– Leaves the choice to the issuer whether to allow for a frictionless payment experience or to enforce SCA.
string
The unique identifier of the Card object, obtained during the card registration process.
string
Max. length: 255 charactersThe URL to which users are automatically returned after 3DS2 if it is triggered (i.e., if the
SecureModeNeeded parameter is set to true).string
Max. length: 255 charactersThe URL to which to redirect the user to proceed to 3DS2 validation.
boolean
Whether or not the
SecureMode was used.string
Returned values:
CARD, DIRECT_DEBIT, PREAUTHORIZED, BANK_WIREThe type of pay-in.string
Returned values:
WEB, DIRECT, EXTERNAL_INSTRUCTIONThe type of execution for the pay-in.string
Max. length: 10 characters; only alphanumeric and spacesCustom description to appear on the user’s bank statement along with the platform name. Different banks may show more or less information. See the Customizing bank statement references article for details.
string
Returned values: One of the supported languages in the ISO 639-1 format: DE, EN, ES, FR, IT, NL, PL, PT.The language in which the payment page is to be displayed.
object
Information regarding security and anti-fraud tools.
Show properties
Show properties
string
The result of the Address Verification System check (only available for UK, US, and Canada).
boolean
Default value: trueWhether multiple captures are activated for the preauthorization.
object
Information about the browser used by the end user (author) to perform the payment.
Show properties
Show properties
string
The exact content of the HTTP accept headers as sent to the platform from the end user’s browser.
boolean
Whether or not the end user’s browser has the ability to execute Java.
string
Format: Two-letter language code (ISO 639-1 alpha-2) followed by two-letter country code (ISO 3166-1 alpha-2), separated by a hyphen (example:
en-US; pattern:^[a-zA-Z]{2}(-[a-zA-Z]{2})?$)The language of the browser.integer
The value representing the depth of the screen’s color palette for displaying images, in bits per pixel.
integer
Max. length: 6 charactersThe height of the screen in pixels.
integer
Max. length: 6 charactersThe width of the screen in pixels.
integer
The difference in minutes between the browser’s timezone and UTC.
string
Max. length: 255 charactersThe exact content of the HTTP User-Agent header.
boolean
Whether or not the end user’s browser has the ability to execute JavaScript.
string
The IP address of the end user initiating the transaction, in IPV4 or IPV6 format.
object
Default value: FirstName, LastName, and Address information of the Shipping object if any, otherwise the user (author).Information about the end user billing address. If left empty, the default values will be automatically taken into account.
Show properties
Show properties
string
The first name of the user.
string
Max. length: 100 charactersThe last name of the user.
object
Information about the billing address.
Show properties
Show properties
string
Max. length: 255 charactersThe first line of the address.
string
Max. length: 255 charactersThe second line of the address.
string
Max. length: 255 charactersThe city of the address.
string
Max. length: 255 charactersThe region of the address. This field is optional except if the
Country is US, CA, or MX.string
Max. length: 255 charactersThe postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
string
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country of the address.
object
Default value: FirstName, LastName, and Address information of the Billing object, if supplied, otherwise of the user (author).Information about the end user’s shipping address. If left empty, the default values will be automatically taken into account.
Show properties
Show properties
string
The first name of the user.
string
Max. length: 100 charactersThe last name of the user.
object
Information about the shipping address.
Show properties
Show properties
string
Max. length: 255 charactersThe first line of the address.
string
Max. length: 255 charactersThe second line of the address.
string
Max. length: 255 charactersThe city of the address.
string
Max. length: 255 charactersThe region of the address. This field is optional except if the
Country is US, CA, or MX.string
Max. length: 255 charactersThe postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
string
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country of the address.
string
Returned values:
V1, V2_1The 3DS protocol version to be applied to the transaction.string | null
Returned values:
V1, V2_1The 3DS protocol version applied to the transaction.string
Returned values:
VISA, MASTERCARD, CB, MAESTROThe card network to use, as chosen by the cardholder, in case of co-branded cards.string
Information about the card used for the transaction.If the information or data is not available,
null is returned.Show properties
Show properties
string
The 6-digit bank identification number (BIN) of the card issuer.
string
The name of the card issuer.
string
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country where the card was issued.
string
Returned values:
DEBIT, CREDIT, CHARGE CARD.The type of card product.string
The card brand. Examples include:
AMERICAN EXPRESS, DISCOVER, JCB, MASTERCARD, VISA, etc.Note: The possible returned values are numerous and liable to evolve over time.string
The subtype of the card product. Examples include:
CLASSIC, GOLD, PLATINUM, PREPAID, etc.Note: The possible returned values are numerous and liable to evolve over time.400 - Cancel attempted after capture
400 - Cancel attempted after capture
{
"Message": "The Payment Status of the preauthorization does not allow for it to be edited",
"Type": "preauthorization_payment_status_can_not_be_canceled",
"Id": "a682bfc5-7dd6-4884-abee-9a6ff74fa21c#1669115406",
"Date": 1669115407,
"errors": null
}
400 - Validation attempted before capture
400 - Validation attempted before capture
{
"Message": "Can't validate a preauthorization with no successful payin.",
"Type": "invalid_action",
"Id": "ebe43430-6a43-4ef5-9e97-06b2a7e075f9#1669114162",
"Date": 1669114163,
"errors": null
}
{
"Id": "156686431",
"Tag": null,
"CreationDate": 1669116461,
"AuthorId": "156671912",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 500
},
"RemainingFunds": {
"Currency": "EUR",
"Amount": 0
},
"AuthorizationDate": 1669116472,
"Status": "SUCCEEDED",
"PaymentStatus": "CANCELED",
"ExpirationDate": 1669678072,
"PayInId": null,
"ResultCode": "000000",
"ResultMessage": "Success",
"SecureMode": "FORCE",
"CardId": "156674899",
"SecureModeReturnURL": "http://example.com?preAuthorizationId=156686431",
"SecureModeRedirectURL": null,
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"SecurityInfo": {
"AVSResult": "NO_CHECK"
},
"MultiCapture": true,
"BrowserInfo": {
"AcceptHeader": "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8",
"JavaEnabled": true,
"Language": "FR-FR",
"ColorDepth": 4,
"ScreenHeight": 1800,
"ScreenWidth": 400,
"TimeZoneOffset": 60,
"UserAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"JavascriptEnabled": true
},
"IpAddress": "80.236.38.245",
"Billing": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Shipping": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": "V2_1",
"PreferredCardNetwork": null,
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"Brand": "VISA",
"SubType": null
}
}
{
"Id": "156686696",
"Tag": null,
"CreationDate": 1669116896,
"AuthorId": "156671912",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 500
},
"RemainingFunds": {
"Currency": "EUR",
"Amount": 0
},
"AuthorizationDate": 1669116904,
"Status": "SUCCEEDED",
"PaymentStatus": "VALIDATED",
"ExpirationDate": 1669678504,
"PayInId": "156686722",
"ResultCode": "000000",
"ResultMessage": "Success",
"SecureMode": "FORCE",
"CardId": "156674899",
"SecureModeReturnURL": "http://example.com?preAuthorizationId=156686696",
"SecureModeRedirectURL": null,
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"SecurityInfo": {
"AVSResult": "NO_CHECK"
},
"MultiCapture": true,
"BrowserInfo": {
"AcceptHeader": "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8",
"JavaEnabled": true,
"Language": "FR-FR",
"ColorDepth": 4,
"ScreenHeight": 1800,
"ScreenWidth": 400,
"TimeZoneOffset": 60,
"UserAgent": "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148",
"JavascriptEnabled": true
},
"IpAddress": "80.236.38.245",
"Billing": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Shipping": {
"FirstName": "Joe",
"LastName": "Bloggs",
"Address": {
"AddressLine1": null,
"AddressLine2": null,
"City": null,
"Region": null,
"PostalCode": null,
"Country": null
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": "V2_1",
"PreferredCardNetwork": null,
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"Brand": "VISA",
"SubType": null
}
}
{
"PaymentStatus": "CANCELED"
}
<?php
require_once 'vendor/autoload.php';
use MangoPay\MangoPayApi;
use MangoPay\Libraries\ResponseException as MGPResponseException;
use MangoPay\Libraries\Exception as MGPException;
$api = new MangoPayApi();
$api->Config->ClientId = 'your-client-id';
$api->Config->ClientPassword = 'your-api-key';
$api->Config->TemporaryFolder = 'tmp/';
try {
$preauthId = 'preauth_m_01JH0PDQS1WT444DJE8VB7F848';
$preauth = $api->CardPreAuthorizations->Get($preauthId);
$preauth->PaymentStatus = CardPreAuthorizationPaymentStatus::Canceled;
// $preauth->PaymentStatus = CardPreAuthorizationPaymentStatus::Validated;
$cancelPreauth = $api->CardPreAuthorizations->Update($preauth);
// $validatePreauth = $api->CardPreAuthorizations->Update($preauth);
print_r($cancelPreauth);
} catch(MGPResponseException $e) {
print_r($e);
} catch(MGPException $e) {
print_r($e);
}
const mangopayInstance = require('mangopay4-nodejs-sdk')
const mangopay = new mangopayInstance({
clientId: 'your-client-id',
clientApiKey: 'your-api-key',
})
// To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
let myPreauthorization = {
Id: '192870038',
PaymentStatus: 'CANCELED',
}
const cancelPreauthorization = async (preauthorization) => {
return await mangopay.CardPreAuthorizations.update(preauthorization)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
cancelPreauthorization(myPreauthorization)
// To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
let myPreauthorization = {
Id: '192870038',
PaymentStatus: 'VALIDATED',
}
const validatePreauthorization = async (preauthorization) => {
return await mangopay.CardPreAuthorizations.update(preauthorization)
.then((response) => {
console.info(response)
return response
})
.catch((err) => {
console.log(err)
return false
})
}
validatePreauthorization(myPreauthorization)
require 'mangopay'
MangoPay.configure do |client|
client.preproduction = true
client.client_id = 'your-client-id'
client.client_apiKey = 'your-api-key'
client.log_file = File.join(Dir.pwd, 'mangopay.log')
end
# To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
def validatePreauthorization(preauthorizationId, preauthorizationObject)
begin
response = MangoPay::PreAuthorization.update(preauthorizationId, preauthorizationObject)
puts response
return response
rescue MangoPay::ResponseError => error
puts "Failed to update preauthorization: #{error.message}"
puts "Error details: #{error.details}"
return false
end
end
myPreauthorization = {
Id: '195059241',
PaymentStatus: 'VALIDATED'
}
validatePreauthorization(myPreauthorization[:Id], myPreauthorization)
# To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
def cancelPreauthorization(preauthorizationId, preauthorizationObject)
begin
response = MangoPay::PreAuthorization.update(preauthorizationId, preauthorizationObject)
puts response
return response
rescue MangoPay::ResponseError => error
puts "Failed to update preauthorization: #{error.message}"
puts "Error details: #{error.details}"
return false
end
end
myPreauthorization = {
Id: '198156939',
PaymentStatus: 'CANCELED'
}
cancelPreauthorization(myPreauthorization[:Id], myPreauthorization)
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.mangopay.MangoPayApi;
import com.mangopay.core.enumerations.PaymentStatus;
import com.mangopay.entities.CardPreAuthorization;
public class CancelPreauthorization {
public static void main(String[] args) throws Exception {
MangoPayApi mangopay = new MangoPayApi();
mangopay.getConfig().setClientId("your-client-id");
mangopay.getConfig().setClientPassword("your-api-key");
CardPreAuthorization preauthorization = mangopay.getCardPreAuthorizationApi().get("preauth_m_01J1Z336RKEZ0MF2YR26JPZCC5");
preauthorization.setPaymentStatus(PaymentStatus.CANCELED);
CardPreAuthorization cancelPreauthorization = mangopay.getCardPreAuthorizationApi().update(preauthorization);
Gson prettyPrint = new GsonBuilder().setPrettyPrinting().create();
String prettyJson = prettyPrint.toJson(cancelPreauthorization);
System.out.println(prettyJson);
}
}
from pprint import pprint
import mangopay
mangopay.client_id='your-client-id'
mangopay.apikey='your-api-key'
from mangopay.api import APIRequest
handler = APIRequest(sandbox=True)
from mangopay.resources import PreAuthorization
# To validate a preauthorization when at least one preauthorized pay-in has been made to capture funds.
card_preauthorization = PreAuthorization(
id = 'preauth_m_01HPHJDFSZWD7BN2MRF0YTHM40',
payment_status = 'VALIDATED'
)
validate_preauthorization = card_preauthorization.save()
pprint(validate_preauthorization)
# To cancel a preauthorization when no preauthorized pay-ins have been made to capture funds
card_preauthorization = PreAuthorization(
id = 'preauth_m_01HPHJDFSZWD7BN2MRF0YTHM40',
payment_status = 'CANCEL'
)
cancel_preauthorization = card_preauthorization.save()
pprint(cancel_preauthorization)
using MangoPay.SDK;
using MangoPay.SDK.Core.Enumerations;
using MangoPay.SDK.Entities.PUT;
using Newtonsoft.Json;
class Program
{
static async Task Main(string[] args)
{
MangoPayApi api = new MangoPayApi();
api.Config.ClientId = "your-client-id";
api.Config.ClientPassword = "your-api-key";
var preauthorizationId = "preauth_m_01J30N3GJ8WK0C7DSGR6BKHARE";
var preauthorization = await api.CardPreAuthorizations.GetAsync(preauthorizationId);
var preauthorizationPut = new CardPreAuthorizationPutDTO
{
PaymentStatus = PaymentStatus.CANCELED,
Tag = "Updated using the Mangopay .NET SDK"
};
var cancelPreauthorization = await api.CardPreAuthorizations.UpdateAsync(preauthorizationPut, preauthorizationId);
string prettyPrint = JsonConvert.SerializeObject(cancelPreauthorization, Formatting.Indented);
Console.WriteLine(prettyPrint);
}
}
Was this page helpful?