mangopay2-nodejs-sdk
Version:
Mangopay Node.js SDK
112 lines (104 loc) • 3.06 kB
JavaScript
/**
*
* Creating users using Mangopay SDK Models and hash of properties
*
*/
// In your app you will require('mangopay2-nodejs-sdk')
var mangopay = require('../index');
// In your app you will define your own set of configurations.
// Check README.md for the full list
var api = new mangopay({
clientId: 'sdk-unit-tests',
clientApiKey: 'cqFfFrWfCcb7UadHNxx2C9Lo6Djw8ZduLi7J9USTmu8bhxxpju'
});
/**
*
* Create a new user using Mangopay SDK Model
* Promise style handling of the response
*
*/
var myUser = new api.models.UserLegal({
Name: 'MangoPay',
Email: 'info@mangopay.com',
LegalPersonType: 'BUSINESS',
LegalRepresentativeFirstName: 'Mango',
LegalRepresentativeLastName: 'Pay',
LegalRepresentativeEmail: 'mango@mangopay.com',
HeadquartersAddress: new api.models.Address({
AddressLine1: "4101 Reservoir Rd NW",
AddressLine2: "",
City: "Washington",
Region: "District of Columbia",
PostalCode: "20007",
Country: "US"
}),
LegalRepresentativeBirthday: 1300186358,
LegalRepresentativeNationality: 'FR',
LegalRepresentativeCountryOfResidence: 'FR',
CompanyNumber: "123456789",
Tag: 'custom tag'
});
api.Users.create(myUser).then(function (myReturnedUser) {
// Output the created user data to console
console.log(myUser.Name + ' legal user created at ' + myReturnedUser.CreationDate);
});
/**
*
* Create a user using a hash of properties. Res
* Don't forget to define PersonType
* This example uses callback pattern approach
*
*/
api.Users.create({
Name: 'MangoPay',
Email: 'info@mangopay.com',
LegalPersonType: 'BUSINESS',
LegalRepresentativeFirstName: 'Mango',
LegalRepresentativeLastName: 'Pay',
LegalRepresentativeEmail: 'mango@mangopay.com',
PersonType: "LEGAL",
HeadquartersAddress: {
"AddressLine1": "4101 Reservoir Rd NW",
"AddressLine2": "",
"City": "Washington",
"Region": "District of Columbia",
"PostalCode": "20007",
"Country": "US"
},
LegalRepresentativeBirthday: 1300186358,
LegalRepresentativeNationality: 'FR',
LegalRepresentativeCountryOfResidence: 'FR',
CompanyNumber: "123456789",
Tag: 'custom tag'
}, function (myOtherUser) {
// Output the created user data to console
console.log(myOtherUser.Name + ' user created at ' + myOtherUser.CreationDate);
});
/**
*
* Create a new natural user with only required values
* Promise style handling of the response
*
*/
api.Users.create({
PersonType: "NATURAL",
FirstName: "John",
LastName: "Smith",
Birthday: 1300186358,
Nationality: "FR",
CountryOfResidence: "GB",
Email: "john@smith.eu",
}).then(function (response) {
console.log("Natural user created", response);
});
/**
*
* Fail at creating a new natural user, error caught
* Promise style handling of the response
*
*/
api.Users.create({
PersonType: "NATURAL",
}).catch(function (error) {
console.log("Natural user creation failed", error);
});