{
"AuthorId": "user_m_01KHXAHEBRWSZXJY85TPPR56TK",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 20000
},
"CardId": "card_wt_HodULFWKVRMEecCa",
"SecureModeReturnURL": "http://example.com",
"StatementDescriptor": null,
"Culture": "EN",
"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": "4ce4:e138:803f:eb1c:9c5b:7316:ec84:3d00",
"Billing": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Shipping": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Tag": "Created using Mangopay API Postman Collection"
}
<?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 {
$userId = 'user_m_01HQK25M6KVHKDV0S36JY9NRKR';
$cardId = 'card_m_01J420XC7KAW655XPP12SC28HS';
$depositPreauth = new MangoPay\CreateDeposit;
$depositPreauth->AuthorId = $userId;
$depositPreauth->CardId = $cardId;
$depositPreauth->DebitedFunds = new Money();
$depositPreauth->DebitedFunds->Amount = 1000;
$depositPreauth->DebitedFunds->Currency = 'EUR';
$depositPreauth->BrowserInfo = new BrowserInfo();
$depositPreauth->BrowserInfo->AcceptHeader = "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8";
$depositPreauth->BrowserInfo->JavaEnabled = true;
$depositPreauth->BrowserInfo->Language = "en";
$depositPreauth->BrowserInfo->ColorDepth = 4;
$depositPreauth->BrowserInfo->ScreenHeight = 1800;
$depositPreauth->BrowserInfo->ScreenWidth = 400;
$depositPreauth->BrowserInfo->TimeZoneOffset = 60;
$depositPreauth->BrowserInfo->UserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148";
$depositPreauth->BrowserInfo->JavascriptEnabled = true;
$depositPreauth->IpAddress = "192.158.1.38";
$depositPreauth->Culture = "FR";
$depositPreauth->SecureModeReturnURL = "http://example.com";
$createDepositPreauth = $api->Deposits->Create($depositPreauth);
print_r($createDepositPreauth);
} catch(MGPResponseException $e) {
print_r($e);
} catch(MGPException $e) {
print_r($e);
}
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.mangopay.MangoPayApi;
import com.mangopay.core.Money;
import com.mangopay.core.enumerations.CultureCode;
import com.mangopay.core.enumerations.CurrencyIso;
import com.mangopay.entities.Deposit;
import com.mangopay.entities.subentities.BrowserInfo;
import com.mangopay.entities.subentities.CreateDeposit;
public class CreateDepositPreauth {
public static void main(String[] args) throws Exception {
MangoPayApi mangopay = new MangoPayApi();
mangopay.getConfig().setClientId("your-client-id");
mangopay.getConfig().setClientPassword("your-api-key");
var userId = "user_m_01HT2NFK7Z2BRQNGNHMY30VVTT";
var cardId = "card_m_01HY0MA4E2WQ0NRYQJP8X8SXMB";
CreateDeposit deposit = new CreateDeposit();
deposit.setAuthorId(userId);
deposit.setCardId(cardId);
deposit.setDebitedFunds(new Money(CurrencyIso.EUR, 1000));
deposit.setSecureModeReturnUrl("http://example.com");
deposit.setCulture(CultureCode.EN);
deposit.setIpAddress("192.158.1.38");
deposit.setBrowserInfo(new BrowserInfo());
deposit.getBrowserInfo().setAcceptHeader("text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8");
deposit.getBrowserInfo().setJavaEnabled(true);
deposit.getBrowserInfo().setLanguage("EN");
deposit.getBrowserInfo().setColorDepth(4);
deposit.getBrowserInfo().setScreenHeight(1800);
deposit.getBrowserInfo().setScreenWidth(400);
deposit.getBrowserInfo().setTimeZoneOffset("60");
deposit.getBrowserInfo().setUserAgent("Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148");
deposit.getBrowserInfo().setJavascriptEnabled(true);
Deposit createDeposit = mangopay.getDepositApi().create(deposit, null);
Gson prettyPrint = new GsonBuilder().setPrettyPrinting().create();
String prettyJson = prettyPrint.toJson(createDeposit);
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 NaturalUser, Deposit
from mangopay.utils import Money, BrowserInfo
natural_user = NaturalUser.get('213753890')
deposit_preauthorization = Deposit(
author_id = natural_user.id,
debited_funds = Money(amount=3000, currency='EUR'),
card_id = '213944219',
secure_mode_return_url = 'http://example.com',
browser_info = BrowserInfo(
user_agent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148',
screen_width = 375,
screen_height = 667,
color_depth = 32,
language = 'EN',
accept_header = 'application/json,text/javascript,*/*;q=0.01<',
timezone_offset = '-120',
java_enabled = True,
javascript_enabled = True
),
ip_address = '159.180.248.187',
tag = 'Created using the Mangopay Python SDK'
)
create_deposit_preauthorization = deposit_preauthorization.save()
pprint(create_deposit_preauthorization)
using MangoPay.SDK;
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 userId = "user_m_01J2TZ261WZNDM0ZDRWGDYA4GN";
var cardId = "card_m_01J3049JBA2XPA7GC7GEFJRQG4";
var deposit = new DepositPostDTO (
userId,
new Money { Amount = 2000, Currency = CurrencyIso.EUR },
cardId,
"http://www.mangopay.com/docs/please-ignore",
"2001:0620:0000:0000:0211:24FF:FE80:C12C",
new 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,
JavascriptEnabled = true,
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"
}
) {
Billing = new Billing
{
FirstName = "Joe",
LastName = "Blogs",
Address = new Address
{
AddressLine1 = "1 MangoPay Street",
AddressLine2 = "The Loop",
City = "Paris",
Region = "Ile de France",
PostalCode = "75001",
Country = CountryIso.FR
}
},
Shipping = new Shipping
{
FirstName = "Joe",
LastName = "Blogs",
Address = new Address
{
AddressLine1 = "1 MangoPay Street",
AddressLine2 = "The Loop",
City = "Paris",
Region = "Ile de France",
PostalCode = "75001",
Country = CountryIso.FR
}
},
Tag = "Created using the Mangopay .NET SDK"
};
var createDepositPreauthorization = await api.Deposits.CreateAsync(deposit);
string prettyPrint = JsonConvert.SerializeObject(createDepositPreauthorization, Formatting.Indented);
Console.WriteLine(prettyPrint);
}
}
{
"Id": "deposit_wt_073099a9-4e14-42b7-9bc7-d1978f65d8ba",
"CreationDate": 1771585135,
"ExpirationDate": 1774177135,
"AuthorId": "user_m_01KHXAHEBRWSZXJY85TPPR56TK",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 20000
},
"Status": "CREATED",
"PaymentStatus": "WAITING",
"PayinsLinked": {
"PayinCaptureId": null,
"PayinComplementId": null
},
"ResultCode": null,
"ResultMessage": null,
"CardId": "card_wt_HodULFWKVRMEecCa",
"PreferredCardNetwork": null,
"SecureModeReturnURL": "http://example.com?depositId=deposit_wt_073099a9-4e14-42b7-9bc7-d1978f65d8ba",
"SecureModeRedirectURL": "https://api.sandbox.whenthen.co/payment-gateway/whenthen/threeDS/54b0c206-0a67-43d4-ace6-14a25697cf85/challenge?id=073099a9-4e14-42b7-9bc7-d1978f65d8ba&url=aHR0cHM6Ly9hcGkuc2FuZGJveC53aGVudGhlbi5jby9wYXltZW50cy8zRFNlY3VyZS81NGIwYzIwNi0wYTY3LTQzZDQtYWNlNi0xNGEyNTY5N2NmODUvMDk5MzBkYzAtZWMwMi00MTlhLTkxZmQtZDdiZjU2M2RjNjNl&amount=MjAwMDA¤cy=RVVS",
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"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": "4ce4:e138:803f:eb1c:9c5b:7316:ec84:3d00",
"Billing": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Shipping": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": null,
"Tag": "Created using the Mangopay API Postman collection",
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"SubType": null,
"Brand": "VISA"
},
"AuthenticationResult": {
"AuthenticationType": "CHALLENGE"
}
}
Create a Card Deposit Preauthorization
POST
/
v2.01
/
{ClientId}
/
deposit-preauthorizations
/
card
/
direct
{
"AuthorId": "user_m_01KHXAHEBRWSZXJY85TPPR56TK",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 20000
},
"CardId": "card_wt_HodULFWKVRMEecCa",
"SecureModeReturnURL": "http://example.com",
"StatementDescriptor": null,
"Culture": "EN",
"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": "4ce4:e138:803f:eb1c:9c5b:7316:ec84:3d00",
"Billing": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Shipping": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Tag": "Created using Mangopay API Postman Collection"
}
<?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 {
$userId = 'user_m_01HQK25M6KVHKDV0S36JY9NRKR';
$cardId = 'card_m_01J420XC7KAW655XPP12SC28HS';
$depositPreauth = new MangoPay\CreateDeposit;
$depositPreauth->AuthorId = $userId;
$depositPreauth->CardId = $cardId;
$depositPreauth->DebitedFunds = new Money();
$depositPreauth->DebitedFunds->Amount = 1000;
$depositPreauth->DebitedFunds->Currency = 'EUR';
$depositPreauth->BrowserInfo = new BrowserInfo();
$depositPreauth->BrowserInfo->AcceptHeader = "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8";
$depositPreauth->BrowserInfo->JavaEnabled = true;
$depositPreauth->BrowserInfo->Language = "en";
$depositPreauth->BrowserInfo->ColorDepth = 4;
$depositPreauth->BrowserInfo->ScreenHeight = 1800;
$depositPreauth->BrowserInfo->ScreenWidth = 400;
$depositPreauth->BrowserInfo->TimeZoneOffset = 60;
$depositPreauth->BrowserInfo->UserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148";
$depositPreauth->BrowserInfo->JavascriptEnabled = true;
$depositPreauth->IpAddress = "192.158.1.38";
$depositPreauth->Culture = "FR";
$depositPreauth->SecureModeReturnURL = "http://example.com";
$createDepositPreauth = $api->Deposits->Create($depositPreauth);
print_r($createDepositPreauth);
} catch(MGPResponseException $e) {
print_r($e);
} catch(MGPException $e) {
print_r($e);
}
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.mangopay.MangoPayApi;
import com.mangopay.core.Money;
import com.mangopay.core.enumerations.CultureCode;
import com.mangopay.core.enumerations.CurrencyIso;
import com.mangopay.entities.Deposit;
import com.mangopay.entities.subentities.BrowserInfo;
import com.mangopay.entities.subentities.CreateDeposit;
public class CreateDepositPreauth {
public static void main(String[] args) throws Exception {
MangoPayApi mangopay = new MangoPayApi();
mangopay.getConfig().setClientId("your-client-id");
mangopay.getConfig().setClientPassword("your-api-key");
var userId = "user_m_01HT2NFK7Z2BRQNGNHMY30VVTT";
var cardId = "card_m_01HY0MA4E2WQ0NRYQJP8X8SXMB";
CreateDeposit deposit = new CreateDeposit();
deposit.setAuthorId(userId);
deposit.setCardId(cardId);
deposit.setDebitedFunds(new Money(CurrencyIso.EUR, 1000));
deposit.setSecureModeReturnUrl("http://example.com");
deposit.setCulture(CultureCode.EN);
deposit.setIpAddress("192.158.1.38");
deposit.setBrowserInfo(new BrowserInfo());
deposit.getBrowserInfo().setAcceptHeader("text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8");
deposit.getBrowserInfo().setJavaEnabled(true);
deposit.getBrowserInfo().setLanguage("EN");
deposit.getBrowserInfo().setColorDepth(4);
deposit.getBrowserInfo().setScreenHeight(1800);
deposit.getBrowserInfo().setScreenWidth(400);
deposit.getBrowserInfo().setTimeZoneOffset("60");
deposit.getBrowserInfo().setUserAgent("Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148");
deposit.getBrowserInfo().setJavascriptEnabled(true);
Deposit createDeposit = mangopay.getDepositApi().create(deposit, null);
Gson prettyPrint = new GsonBuilder().setPrettyPrinting().create();
String prettyJson = prettyPrint.toJson(createDeposit);
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 NaturalUser, Deposit
from mangopay.utils import Money, BrowserInfo
natural_user = NaturalUser.get('213753890')
deposit_preauthorization = Deposit(
author_id = natural_user.id,
debited_funds = Money(amount=3000, currency='EUR'),
card_id = '213944219',
secure_mode_return_url = 'http://example.com',
browser_info = BrowserInfo(
user_agent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148',
screen_width = 375,
screen_height = 667,
color_depth = 32,
language = 'EN',
accept_header = 'application/json,text/javascript,*/*;q=0.01<',
timezone_offset = '-120',
java_enabled = True,
javascript_enabled = True
),
ip_address = '159.180.248.187',
tag = 'Created using the Mangopay Python SDK'
)
create_deposit_preauthorization = deposit_preauthorization.save()
pprint(create_deposit_preauthorization)
using MangoPay.SDK;
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 userId = "user_m_01J2TZ261WZNDM0ZDRWGDYA4GN";
var cardId = "card_m_01J3049JBA2XPA7GC7GEFJRQG4";
var deposit = new DepositPostDTO (
userId,
new Money { Amount = 2000, Currency = CurrencyIso.EUR },
cardId,
"http://www.mangopay.com/docs/please-ignore",
"2001:0620:0000:0000:0211:24FF:FE80:C12C",
new 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,
JavascriptEnabled = true,
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"
}
) {
Billing = new Billing
{
FirstName = "Joe",
LastName = "Blogs",
Address = new Address
{
AddressLine1 = "1 MangoPay Street",
AddressLine2 = "The Loop",
City = "Paris",
Region = "Ile de France",
PostalCode = "75001",
Country = CountryIso.FR
}
},
Shipping = new Shipping
{
FirstName = "Joe",
LastName = "Blogs",
Address = new Address
{
AddressLine1 = "1 MangoPay Street",
AddressLine2 = "The Loop",
City = "Paris",
Region = "Ile de France",
PostalCode = "75001",
Country = CountryIso.FR
}
},
Tag = "Created using the Mangopay .NET SDK"
};
var createDepositPreauthorization = await api.Deposits.CreateAsync(deposit);
string prettyPrint = JsonConvert.SerializeObject(createDepositPreauthorization, Formatting.Indented);
Console.WriteLine(prettyPrint);
}
}
{
"Id": "deposit_wt_073099a9-4e14-42b7-9bc7-d1978f65d8ba",
"CreationDate": 1771585135,
"ExpirationDate": 1774177135,
"AuthorId": "user_m_01KHXAHEBRWSZXJY85TPPR56TK",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 20000
},
"Status": "CREATED",
"PaymentStatus": "WAITING",
"PayinsLinked": {
"PayinCaptureId": null,
"PayinComplementId": null
},
"ResultCode": null,
"ResultMessage": null,
"CardId": "card_wt_HodULFWKVRMEecCa",
"PreferredCardNetwork": null,
"SecureModeReturnURL": "http://example.com?depositId=deposit_wt_073099a9-4e14-42b7-9bc7-d1978f65d8ba",
"SecureModeRedirectURL": "https://api.sandbox.whenthen.co/payment-gateway/whenthen/threeDS/54b0c206-0a67-43d4-ace6-14a25697cf85/challenge?id=073099a9-4e14-42b7-9bc7-d1978f65d8ba&url=aHR0cHM6Ly9hcGkuc2FuZGJveC53aGVudGhlbi5jby9wYXltZW50cy8zRFNlY3VyZS81NGIwYzIwNi0wYTY3LTQzZDQtYWNlNi0xNGEyNTY5N2NmODUvMDk5MzBkYzAtZWMwMi00MTlhLTkxZmQtZDdiZjU2M2RjNjNl&amount=MjAwMDA¤cy=RVVS",
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"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": "4ce4:e138:803f:eb1c:9c5b:7316:ec84:3d00",
"Billing": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Shipping": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": null,
"Tag": "Created using the Mangopay API Postman collection",
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"SubType": null,
"Brand": "VISA"
},
"AuthenticationResult": {
"AuthenticationType": "CHALLENGE"
}
}
Body parameters
string
required
The unique identifier of the user at the source of the transaction.
object
required
Information about the preauthorized funds.
Show properties
Show properties
string
required
Allowed 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 funds.
integer
required
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).string
required
The unique identifier of the Card object, obtained during the card registration process.
string
Allowed values:
VISA, MASTERCARD, CB, MAESTROThe card network to use, as chosen by the cardholder, in case of co-branded cards.string
required
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: 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
Allowed 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
required
Information about the browser used by the end user (author) to perform the payment.
Show properties
Show properties
string
required
The exact content of the HTTP accept headers as sent to the platform from the end user’s browser.
boolean
required
Whether or not the end user’s browser has the ability to execute Java.
string
required
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
required
The value representing the depth of the screen’s color palette for displaying images, in bits per pixel.
integer
required
Max. length: 6 charactersThe height of the screen in pixels.
integer
required
Max. length: 6 charactersThe width of the screen in pixels.
integer
required
The difference in minutes between the browser’s timezone and UTC.
string
required
Max. length: 255 charactersThe exact content of the HTTP User-Agent header.
boolean
required
Whether or not the end user’s browser has the ability to execute JavaScript.
string
required
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
required
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 charactersRequired if
Country is US, CA, or MX.The region of the address.string
required
Max. length: 255 charactersThe postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
string
required
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
required
Information about the shipping address.
Show properties
Show properties
string
required
Max. length: 255 charactersThe first line of the address.
string
Max. length: 255 charactersThe second line of the address.
string
required
Max. length: 255 charactersThe city of the address.
string
Max. length: 255 charactersRequired if
Country is US, CA, or MX.The region of the address.string
required
Max. length: 255 charactersThe postal code of the address. The postal code can contain the following characters: alphanumeric, dashes, and spaces.
string
required
Format: Two-letter country code (ISO 3166-1 alpha-2 format)The country of the address.
string
Max. length: 255 charactersCustom data that you can add to this object.
For transactions (pay-in, transfer, payout), you can use this parameter to identify corresponding information regarding the user, transaction, or payment methods on your platform.
For transactions (pay-in, transfer, payout), you can use this parameter to identify corresponding information regarding the user, transaction, or payment methods on your platform.
string
The unique reference generated for the profiling session, used by the fraud prevention solution to produce recommendations for the transaction using the profiling data.Note: Parameter not returned by the API. Profiling feature available on request – contact Mangopay via the Dashboard for more information.
Responses
200
200
string
Max. length: 255 characters
Unix timestamp
The date and time at which the object was created.
Unix timestamp
The date and time at which the hold period ends and the preauthorized funds are released.
At the expiration date, the deposit preauthorization’s
At the expiration date, the deposit preauthorization’s
PaymentStatus changes to EXPIRED if no captures were made.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 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).string
Returned values:
CREATED, SUCCEEDED, FAILEDThe status of the authorization.string
Returned values:
WAITING, CANCELED, CANCEL_REQUESTED, EXPIRED, VALIDATED, FAILEDThe payment status of the deposit preauthorization object:WAITING– The deposit preauthorization can be used: the preauthorized funds can be captured (ifStatusisSUCCEEDED) or the preauthorization can be canceled manually.CANCELED– Value to pass to manually cancel the deposit preauthorization before use; indicates that the deposit preauthorization was canceled manually.CANCEL_REQUESTED– The cancellation of the deposit preauthorization has been requested but not yet processed.EXPIRED– The hold period on the preauthorized funds has ended without it being used.VALIDATED– Indicates that the preauthorized funds were captured.FAILED– The pay-in against the preauthorization has failed, but a retry may be possible.
object
Information about the deposit preauthorized pay-ins made against the deposit preauthorization.
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
The unique identifier of the Card object, obtained during the card registration process.
string
Returned values:
VISA, MASTERCARD, CB, MAESTROThe card network to use, as chosen by the cardholder, in case of co-branded cards.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 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
Max. length: 255 charactersCustom data that you can add to this object.
For transactions (pay-in, transfer, payout), you can use this parameter to identify corresponding information regarding the user, transaction, or payment methods on your platform.
For transactions (pay-in, transfer, payout), you can use this parameter to identify corresponding information regarding the user, transaction, or payment methods on your platform.
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.object | null
Information about the authentication result, based on the request made by Mangopay and the decision of the issuer regarding the type of authentication to be enforced (if applicable).
Show properties
Show properties
string | null
Response values:
CHALLENGE, FRICTIONLESS, DIRECT_AUTHORIZATIONThe type of authentication:CHALLENGE– The issuer requested SCA to be enforced (for example, using 3DS).FRICTIONLESS– The transaction was exempted from SCA because an exemption was granted by the issuer.DIRECT_AUTHORIZATION– The transaction was sent to the issuer for authorization without any frictionless or challenge (for example, if SCA doesn’t apply).
null value typically indicates that authentication was not requested (for example, because the request failed before being sent) or a decision was not received.{
"Id": "deposit_wt_073099a9-4e14-42b7-9bc7-d1978f65d8ba",
"CreationDate": 1771585135,
"ExpirationDate": 1774177135,
"AuthorId": "user_m_01KHXAHEBRWSZXJY85TPPR56TK",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 20000
},
"Status": "CREATED",
"PaymentStatus": "WAITING",
"PayinsLinked": {
"PayinCaptureId": null,
"PayinComplementId": null
},
"ResultCode": null,
"ResultMessage": null,
"CardId": "card_wt_HodULFWKVRMEecCa",
"PreferredCardNetwork": null,
"SecureModeReturnURL": "http://example.com?depositId=deposit_wt_073099a9-4e14-42b7-9bc7-d1978f65d8ba",
"SecureModeRedirectURL": "https://api.sandbox.whenthen.co/payment-gateway/whenthen/threeDS/54b0c206-0a67-43d4-ace6-14a25697cf85/challenge?id=073099a9-4e14-42b7-9bc7-d1978f65d8ba&url=aHR0cHM6Ly9hcGkuc2FuZGJveC53aGVudGhlbi5jby9wYXltZW50cy8zRFNlY3VyZS81NGIwYzIwNi0wYTY3LTQzZDQtYWNlNi0xNGEyNTY5N2NmODUvMDk5MzBkYzAtZWMwMi00MTlhLTkxZmQtZDdiZjU2M2RjNjNl&amount=MjAwMDA¤cy=RVVS",
"SecureModeNeeded": true,
"PaymentType": "CARD",
"ExecutionType": "DIRECT",
"StatementDescriptor": null,
"Culture": "EN",
"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": "4ce4:e138:803f:eb1c:9c5b:7316:ec84:3d00",
"Billing": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Shipping": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Requested3DSVersion": null,
"Applied3DSVersion": null,
"Tag": "Created using the Mangopay API Postman collection",
"CardInfo": {
"BIN": "497010",
"IssuingBank": "LA BANQUE POSTALE",
"IssuerCountryCode": "MA",
"Type": "CREDIT",
"SubType": null,
"Brand": "VISA"
},
"AuthenticationResult": {
"AuthenticationType": "CHALLENGE"
}
}
{
"AuthorId": "user_m_01KHXAHEBRWSZXJY85TPPR56TK",
"DebitedFunds": {
"Currency": "EUR",
"Amount": 20000
},
"CardId": "card_wt_HodULFWKVRMEecCa",
"SecureModeReturnURL": "http://example.com",
"StatementDescriptor": null,
"Culture": "EN",
"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": "4ce4:e138:803f:eb1c:9c5b:7316:ec84:3d00",
"Billing": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Shipping": {
"FirstName": "Alex",
"LastName": "Smith",
"Address": {
"AddressLine1": "6 rue de la Cité",
"AddressLine2": "Appartement 3",
"City": "Paris",
"Region": "Île-de-France",
"PostalCode": "75004",
"Country": "FR"
}
},
"Tag": "Created using Mangopay API Postman Collection"
}
<?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 {
$userId = 'user_m_01HQK25M6KVHKDV0S36JY9NRKR';
$cardId = 'card_m_01J420XC7KAW655XPP12SC28HS';
$depositPreauth = new MangoPay\CreateDeposit;
$depositPreauth->AuthorId = $userId;
$depositPreauth->CardId = $cardId;
$depositPreauth->DebitedFunds = new Money();
$depositPreauth->DebitedFunds->Amount = 1000;
$depositPreauth->DebitedFunds->Currency = 'EUR';
$depositPreauth->BrowserInfo = new BrowserInfo();
$depositPreauth->BrowserInfo->AcceptHeader = "text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8";
$depositPreauth->BrowserInfo->JavaEnabled = true;
$depositPreauth->BrowserInfo->Language = "en";
$depositPreauth->BrowserInfo->ColorDepth = 4;
$depositPreauth->BrowserInfo->ScreenHeight = 1800;
$depositPreauth->BrowserInfo->ScreenWidth = 400;
$depositPreauth->BrowserInfo->TimeZoneOffset = 60;
$depositPreauth->BrowserInfo->UserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148";
$depositPreauth->BrowserInfo->JavascriptEnabled = true;
$depositPreauth->IpAddress = "192.158.1.38";
$depositPreauth->Culture = "FR";
$depositPreauth->SecureModeReturnURL = "http://example.com";
$createDepositPreauth = $api->Deposits->Create($depositPreauth);
print_r($createDepositPreauth);
} catch(MGPResponseException $e) {
print_r($e);
} catch(MGPException $e) {
print_r($e);
}
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.mangopay.MangoPayApi;
import com.mangopay.core.Money;
import com.mangopay.core.enumerations.CultureCode;
import com.mangopay.core.enumerations.CurrencyIso;
import com.mangopay.entities.Deposit;
import com.mangopay.entities.subentities.BrowserInfo;
import com.mangopay.entities.subentities.CreateDeposit;
public class CreateDepositPreauth {
public static void main(String[] args) throws Exception {
MangoPayApi mangopay = new MangoPayApi();
mangopay.getConfig().setClientId("your-client-id");
mangopay.getConfig().setClientPassword("your-api-key");
var userId = "user_m_01HT2NFK7Z2BRQNGNHMY30VVTT";
var cardId = "card_m_01HY0MA4E2WQ0NRYQJP8X8SXMB";
CreateDeposit deposit = new CreateDeposit();
deposit.setAuthorId(userId);
deposit.setCardId(cardId);
deposit.setDebitedFunds(new Money(CurrencyIso.EUR, 1000));
deposit.setSecureModeReturnUrl("http://example.com");
deposit.setCulture(CultureCode.EN);
deposit.setIpAddress("192.158.1.38");
deposit.setBrowserInfo(new BrowserInfo());
deposit.getBrowserInfo().setAcceptHeader("text/html, application/xhtml+xml, application/xml;q=0.9, /;q=0.8");
deposit.getBrowserInfo().setJavaEnabled(true);
deposit.getBrowserInfo().setLanguage("EN");
deposit.getBrowserInfo().setColorDepth(4);
deposit.getBrowserInfo().setScreenHeight(1800);
deposit.getBrowserInfo().setScreenWidth(400);
deposit.getBrowserInfo().setTimeZoneOffset("60");
deposit.getBrowserInfo().setUserAgent("Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148");
deposit.getBrowserInfo().setJavascriptEnabled(true);
Deposit createDeposit = mangopay.getDepositApi().create(deposit, null);
Gson prettyPrint = new GsonBuilder().setPrettyPrinting().create();
String prettyJson = prettyPrint.toJson(createDeposit);
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 NaturalUser, Deposit
from mangopay.utils import Money, BrowserInfo
natural_user = NaturalUser.get('213753890')
deposit_preauthorization = Deposit(
author_id = natural_user.id,
debited_funds = Money(amount=3000, currency='EUR'),
card_id = '213944219',
secure_mode_return_url = 'http://example.com',
browser_info = BrowserInfo(
user_agent = 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_6_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148',
screen_width = 375,
screen_height = 667,
color_depth = 32,
language = 'EN',
accept_header = 'application/json,text/javascript,*/*;q=0.01<',
timezone_offset = '-120',
java_enabled = True,
javascript_enabled = True
),
ip_address = '159.180.248.187',
tag = 'Created using the Mangopay Python SDK'
)
create_deposit_preauthorization = deposit_preauthorization.save()
pprint(create_deposit_preauthorization)
using MangoPay.SDK;
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 userId = "user_m_01J2TZ261WZNDM0ZDRWGDYA4GN";
var cardId = "card_m_01J3049JBA2XPA7GC7GEFJRQG4";
var deposit = new DepositPostDTO (
userId,
new Money { Amount = 2000, Currency = CurrencyIso.EUR },
cardId,
"http://www.mangopay.com/docs/please-ignore",
"2001:0620:0000:0000:0211:24FF:FE80:C12C",
new 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,
JavascriptEnabled = true,
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"
}
) {
Billing = new Billing
{
FirstName = "Joe",
LastName = "Blogs",
Address = new Address
{
AddressLine1 = "1 MangoPay Street",
AddressLine2 = "The Loop",
City = "Paris",
Region = "Ile de France",
PostalCode = "75001",
Country = CountryIso.FR
}
},
Shipping = new Shipping
{
FirstName = "Joe",
LastName = "Blogs",
Address = new Address
{
AddressLine1 = "1 MangoPay Street",
AddressLine2 = "The Loop",
City = "Paris",
Region = "Ile de France",
PostalCode = "75001",
Country = CountryIso.FR
}
},
Tag = "Created using the Mangopay .NET SDK"
};
var createDepositPreauthorization = await api.Deposits.CreateAsync(deposit);
string prettyPrint = JsonConvert.SerializeObject(createDepositPreauthorization, Formatting.Indented);
Console.WriteLine(prettyPrint);
}
}
Was this page helpful?
⌘I