Get Detailed Wallet Data

GetWalletDetails

How it works

This method is often used by your system, to get all information regarding a wallet: the amount of Money-In the wallet and so forth. Everything about one wallet is here.

Fill in at least one search field.

XML

<GetWalletDetails xmlns="Service_mb">
  <wlLogin>string</wlLogin>
  <wlPass>string</wlPass>
  <language>string</language>
  <version>string</version>
  <walletIp>string</walletIp>
  <walletUa>string</walletUa>
  <wallet>string</wallet>
  <email>string</email>
</GetWalletDetails>
<?xml version="1.0" encoding="utf-8"?>
<WALLET>
	<ID>string<ID>
	<BAL>string</BAL>
	<NAME>string<NAME>
	<EMAIL>string<EMAIL>
	<DOCS> <!--since version 1.1-->
		<DOC>
			<ID> string </ID>
			<S> string </S>
			<TYPE> string </TYPE><!--since version 1.2-->
			<VD> string </VD><!--since version 1.5-->
			<D> string </D><!--since version 2.4-->
		</DOC>
		...
	</DOCS>
	<IBANS> <!--since version 1.1-->
		<IBAN>
			<ID> string </ID>
			<S> string </S>
			<DATA> string </DATA><!--since version 1.3-->
			<SWIFT> string </SWIFT><!--since version 1.3-->
			<HOLDER> string </HOLDER><!--since version 1.6-->
            <TYPE> string </TYPE><!--since version 2.5-->
		</IBAN>
		...
	</IBANS>
	<STATUS>string</STATUS>
	<BLOCKED>1</BLOCKED> <!--since de version 1.6-->
	<SDDMANDATES> <!--since de version 1.4-->
		<SDDMANDATE>
			<ID>sddMandateId</ID>
			<S>status</S>
			<DATA>iban</DATA>
			<SWIFT>swiftCode</SWIFT>
		</SDDMANDATE>
		...
	</SDDMANDATES>
	<LWID>string</LWID>
	<CARDS> <!--since version 1.8-->
		<CARD>
			<ID>string</ID>
			<EXTRA>
				<IS3DS> string </IS3DS>
				<CTRY> string </CTRY>
				<AUTH> string </AUTH>
				<NUM> string </NUM>
				<EXP> string </EXP>
				<TYP> string </TYP>
			</EXTRA>
		</CARD>
		...
	</CARDS>
	<!--since version 2.0-->
	<FirstName> string </FirstName>
	<LastName> string </LastName>
	<CompanyName> string </CompanyName>
	<CompanyDescription> string </CompanyDescription>
	<CompanyWebsite> string </CompanyWebsite>
	<!--since version 2.2--> 
	<Nationality> string </Nationality>
	<BirthDate> string </BirthDate>
	<BirthCity> string </BirthCity>
	<BirthCountry> string </BirthCountry>
	<CompanyIdentificationNumber> string </CompanyIdentificationNumber>
	<!--à partir de la version 2.3--> 
	<ClientTitle> string </ClientTitle>
	<Street> string </Street>
	<PostCode> string </PostCode>
	<City> string </City>
	<Country> string </Country>
	<PhoneNumber> string </PhoneNumber>
	<MobileNumber> string </MobileNumber>
	<IsCompany> string </IsCompany>
	<IsOneTimeCustomer> string </IsOneTimeCustomer>
	<IsTechWallet> string </IsTechWallet>
	<LIMITS> <!-- à partir de la version 2.6-->
		<TOTALMONEYINALLOWED>string</TOTALMONEYINALLOWED>
		<AMOUNTMONEYINALLOWED>string</AMOUNTMONEYINALLOWED>
	</LIMITS>
</WALLET>
   

JSON

{   
    "wlLogin":"string",
    "wlPass":"string",
    "language":"string",
    "version":"string",
    "walletIp":"string",
    "walletUa":"string",
    "wallet":"string",
    "email":"string"
} 
 "WALLET":{  
            "ID":"string",
            "BAL":"string",
            "NAME":"string",
            "EMAIL":"string",
            "DOCS":[  
                {  
                    "ID":"string",
                    "S":"string",
                    "TYPE":"string",
                    "VD":"string",
                    "D":"string"
                },
                ...
            ],
            "IBANS":[  
                {  
                    "ID":"string",
                    "S":"string",
                    "DATA":"string",
                    "SWIFT":"string",
                    "HOLDER":"string",
                    "TYPE":"string"
                },
                ...
            ],
            "STATUS":"string",
            "BLOCKED":"1",
            "SDDMANDATES":[  
                {  
                    "ID":"sddMandateId",
                    "S":"status",
                    "DATA":"iban",
                    "SWIFT":"swiftCode"
                }
            ],
            "LWID":"string",
            "CARDS":[  
                {  
                    "ID":"string",
                    "EXTRA":{  
                        "IS3DS":"string",
                        "CTRY":"string",
                        "AUTH":"string",
                        "NUM":"string",
                        "EXP":"string",
                        "TYP":"string"
                    }
                },
                ...
            ],
            "FirstName":"string",
            "LastName":"string",
            "CompanyName":"string",
            "CompanyDescription":"string",
            "CompanyWebsite":"string",
            "Nationality": "string",
            "BirthDate": "string",
            "BirthCity": "string",
            "BirthCountry": "string",
            "CompanyIdentificationNumber": "string",
            "ClientTitle": "string",
            "Street": "string",
            "PostCode": "string",
            "City": "string",
            "Country": "string",
            "PhoneNumber": "string",
            "MobileNumber": "string",
            "IsCompany": "string",
            "IsOneTimeCustomer": "string",
            "IsTechWallet": "string",
			"LIMITS": {
				"TOTALMONEYINALLOWED":"string",
				"AMOUNTMONEYINALLOWED":"string"
			}
        }

Request Input Description

ItemDescriptionMandatoryFormatExample
walletWallet IDYes[0: 256] char33612345678
emailWallet email addressNo[0: 256] char[email protected]

Response Output Description

VersionItemDescriptionExample

= 1.0

WALLETWallet

= 1.0

IDWallet ID33612345678 ou taxi67

= 1.0

BALWallet balance amount23.9

= 1.0

NAMEFirst and last namesJean Dupont

= 1.0

EMAILEmail address[email protected]

= 1.1

DOCSAll documents related to the wallet including the old ones are replaced (status = 4). You have to check the status of these documents in order to recognize whether they are real or accepted documents.

= 1.1

DOCDocument

= 1.1

DOC>IDDocument ID20

= 1.1

DOC>SDocument status2
The list of statuses is available in the annexe

= 1.2

DOC>TYPEType of document.0
The list of types is available in the annexe

= 1.5

DOC>VDThe validity date of the document
  • *Note:Empty if the document hasnot expired**. If the document has expired a date will be displayed.
23/03/2016
Format: dd/mm/yyyy

= 1.9

DOC>CA comment is written by our KYC team on a documentincorrect ID card holder

= 1.1

IBANSIBAN list that changed since the entry date

= 1.0

IBANIBAN

= 1.0

IBAN>IDIBAN ID98

= 1.0

IBAN>SOnly status 5 allows the use of the IBAN for a Money-out.5
The list of types is available in the annexe

= 1.3

IBAN>DATAIBAN saved30002014400000156627A61

= 1.3

IBAN>SWIFTSWIFT BIC code associated with the IBANCRLYFRPP

= 1.6

IBAN>HOLDERIBAN HolderJean Dupont

= 1.0

STATUSWallet status5
The list of statuses is available in the annexe 

= 1.6

BLOCKEDIndicates if the wallet is blocked or not:1
0: not blocked
1: blocked

= 1.4

SDDMANDATESList of SDD mandates associated with the wallet

= 1.4

SDDMANDATESDD mandate block

= 1.4

SDDMANDATE>IDMandate ID98

= 1.4

SDDMANDATE>SMandate status.5
The list of types is available in the annexe

= 1.4

SDDMANDATE>DATAIBAN associated with the mandate

= 1.4

SDDMANDATE>SWIFTSWIFT code associated with the mandate

= 1.7

LWIDInternal ID is given by LEMONWAY (ID displayed on the Dashboard)3673

= 1.8

CARDSList of cards linked to the wallet

= 2.0

FirstNameHolder's First NameJean

= 2.0

LastNameHolder's Last NameDupont

= 2.0

CompanyNameCompany nameLEMON

= 2.0

CompanyDescriptionCompany DescriptionPayment Service

= 2.0

CompanyWebsiteCompany Websitelemonway.com

= 2.0

isDebtorFor crowdfunding/loan platforms, indicates if the wallet is created for a debtor 0
1: yes 
0 or empty: no

= 2.0

payerOrBeneficiaryIndicates if the wallet is created for a payer or a beneficiary : 1
Empty: unknown status (default) 
1: payer 
2: beneficiary

= 2.2

NationalityNationalityFRA

= 2.2

BirthDateBirthdate

= 2.2

BirthCityBirth cityPARIS

= 2.2

BirthCountryBirth countryFRA

= 2.2

CompanyIdentificationNumberCompany identification number12

= 2.3

ClientTitleTitle"M": M.
"F": Mme 
"J": Compte joint 
"U" : Inconnu (défaut)

= 2.3

StreetNumber and street26 rue de Paris

= 2.3

PostCodePost code/ZIP93100

= 2.3

CityCityMontreuil

= 2.3

CountryCountry using ISO-3FRA

= 2.3

PhoneNumberPhone number with MSISDN format: international number with country code without "00" neither "+"33672635263

= 2.3

MobileNumberMobile phone number with MSISDN format: international number with country code without "00" neither "+"33672635263
This is used by default when electronically signing documents

= 2.3

IsCompanyIndicates if the wallet is created for a company 1
1: yes 
0 or empty: no

= 2.3

IsOneTimeCustomerIndicates if the wallet is for a one-time customer1
0: no (default) 
1: yes

= 2.3

IsTechWallet0 or empty: no (default) 1
1: yes, in case this option is enabled in your contract. Otherwise, it will be considered a client wallet

=2.4

DOC>DIndicates the modification date of the document26/02/2019

=2.5

IBAN>TYPEIndicates it's a merchant IBAN or a virtual client IBAN.2
1: merchant IBAN
2: iban virtual client.

=2.6

LIMITSOne-time customer only
Indicates the wallet's limits

=2.6

TOTALMONEYINALLOWEDOne-time customer only3
Total money in the number allowed for this wallet

=2.6

AMOUNTMONEYINALLOWEDOne-time customer only1000
Total money in the amount allowed for this wallet