post https://wt-your-id.sandbox.auth0-extend.com/your-app/api/charge
Charge a user some MOBI (GUSER ➞ GDAPP)
Charge the currently authenticated user and optionally forwards the amount to the third-party in the same transaction
$.post(
'https://yoursite.com/your-app/api/charge',
{ amount: 5.0 },
function(data) {
console.log(data);
}
);