The User Emoney object

Parameters

UserId
string

string:

Maximum length is 255 characters

The object owner's UserId

CreditedEMoney
Money

Money:

View Sub-parameters

The amount of money that has been credited to this user

CreditedEMoney.Currency
Currency

Currency:

AED, AUD, CAD, CHF, CZK, DKK, EUR, GBP, HKD, JPY, NOK, PLN, SEK, USD, ZAR

The currency - should be ISO_4217 format

CreditedEMoney.Amount
int

int

An amount of money in the smallest sub-division of the currency, e.g. 12.60 EUR would be represented as 1260 whereas 12 JPY would be represented as just 12)

DebitedEMoney
Money

Money:

View Sub-parameters

The amount of money that has been debited from this user

DebitedEMoney.Currency
Currency

Currency:

AED, AUD, CAD, CHF, CZK, DKK, EUR, GBP, HKD, JPY, NOK, PLN, SEK, USD, ZAR

The currency - should be ISO_4217 format

DebitedEMoney.Amount
int

int

An amount of money in the smallest sub-division of the currency, e.g. 12.60 EUR would be represented as 1260 whereas 12 JPY would be represented as just 12)

{
"UserId": "8494514",
"CreditedEMoney": {
"Currency": "EUR",
"Amount": 12
},
"DebitedEMoney": {
"Currency": "EUR",
"Amount": 12
}
}

View a User's emoney

This endpoint shows you the emoney cashin/cashout amounts for a particular user - more information about KYC and emoney is available here.

You can add a specific year and a specific month on your endpoint to get emoney only for this period.

Note that you can use the Currency parameter to have the amounts specified in a certain currency.

GET .../v2.01/ClientId

The ID of your client account

/users/UserId

A Mangopay user's ID

/emoney/Year

The year

/Month

The month

Get parameters

Currency
Currency

Currency:

AED, AUD, CAD, CHF, CZK, DKK, EUR, GBP, HKD, JPY, NOK, PLN, SEK, USD, ZAR

optional

The currency - should be ISO_4217 format

  • View
  • Code
    A code sample is not available
  • Run
  • View
  • Code
    A code sample is not available
  • Run
GET .../users/:UserId/emoney/:Year/:Month HTTP/1.1
Get Parameters :
{
"Currency": "EUR"
}
GET .../users//emoney// HTTP/1.1
Get Parameters :
{
"Currency": ""
}
Share feedback