AddDealerWallet

This XML API used to add dealer wallet using Credit Card and Cash

End Point https://www.vcareapi.com/vcareOssApi/AddDealerWallet/
Field (Short Description) Value/Tag Name Format Field Example Type Notes Validation rules
VENDOR ID string Vcarecorporation Required A unique Vendor ID is associated with the MVNO/OSS partner. This is used for authorization purpose and can be obtained by contacting your account manager.
USER NAME string Vcarecorporation Required A unique User name is associated with the MVNO/OSS partner. This is used for authorization purpose and can be obtained by contacting your account manager.
PASSWORD string Vcarecorporation Required This is a random string which is generated by Vcare and is tied to the MVNO/OSS user name. This is specifically used for authentication purpose and can be obtained by contacting your account manager.
PIN string 123456789 Required This is generated by Vcare to provide an additional layer of security in the Interim API. This is used for authentication purpose and can be obtained by contacting your account manager.
REFERENCENUMBER string 123456789 Required Auto generated unique reference number is required to be passed with each transaction.
PAYMENT TYPE string CASH Required This determines how is the payment take to add money in wallet CASH or CREDITCARD
AGENT LOGIN ID string test3 Required Provide agent login id which you want to credit wallet.  
COMPANY ID Numeric 28 Required A unique Company ID assigned to the MVNO. This can be obtained using another API called GetCompany.
AMOUNT string 20 Required This is the amount on which you want to calculate the tax and want the tax break up  
CARD TYPE string VISA Conditional This is the type of the card. This is required if the payment type is CREDITCARD. if payment type not cash then required VISA,MASTERCARD,DISCOVER,AMERICAN EXPRESS
CARD NUMBER string 4111111111111110 Conditional This is the card number Max=16 digits. if payment type not cash then required
EXPIRATION MONTH string 11 Conditional This is the expiration month of the card.This is required if the payment type is CREDITCARD if payment type not cash then required
EXPIRATION YEAR string 2018 Conditional This is the expiration year of the card.This is required if the payment type is CREDITCARD if payment type not cash then required
CARD CODE string 23423 Conditional if payment type not cash then required
NAME ON CARD string John Doe Conditional This is the name on the card.This is required if the payment type is CREDITCARD if payment type not cash then required
RECEIPT NUMBER string test123test Optinal Receipt number if any you have.
ADDRESS string street 2 Optional This is the Billing address line 1 for the associated bank account. if payment type not cash then required
ADDRESS2 string street 2 Optional This is the Billing address line 2 for the associated bank account. if payment type not cash then required
CITY string street 2 Optional This is the Billing address City for the associated bank account. if payment type not cash then required
STATE string street 2 Optional This is the state of the registered billing address in the bank account to which the card is associated. if payment type not cash then required
ZIPCODE string street 2 Optional This is the Billing address Zip Code for the associated bank account. if payment type not cash then required
SOURCE string API Optional Source of the order/application Expected Value:API, TABLET, IVR, WEBSITE, POS, CUSTOMERPORTAL
AGENT ID string John Doe Required This is the Telgoo5 user id.For the Agent/Employee who is sending the API request.
AGENT PASSWORD string JohnDoe Conditional This is the password for the Agent Id mentioned above. This is configuration level field. If you have set the permissions for the Agent Id for the requirement of the password in API transactions then you will need to pass the Agent Password in all the XML API transaction, else if you have set the permissions to password not required then you don't need to pass the Agent Password in the XML API.
Sample Request XML
<?xml version="1.0" encoding="utf-8"?>
<VCAREOSSAPI xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CREDENTIALS>
<VENDORID></VENDORID>
<USERNAME></USERNAME>
<PASSWORD></PASSWORD>
<PIN></PIN>
<REFERENCENUMBER></REFERENCENUMBER>
</CREDENTIALS>
<VCAREOSS>
<ADDDEALERWALLET>
	<PAYMENTTYPE>CASH</PAYMENTTYPE>
	<COMPANYID></COMPANYID>
	<AGENTLOGINID></AGENTLOGINID>
	<AMOUNT></AMOUNT>
	<CARDTYPE></CARDTYPE>
	<CARDNUMBER></CARDNUMBER>
	<EXPIRATION_MONTH></EXPIRATION_MONTH>
	<EXPIRATION_YEAR></EXPIRATION_YEAR>
	<CARDCODE></CARDCODE>
	<NAMECARD></NAMECARD>
	<RECEIPTNUMBER></RECEIPTNUMBER>
	<ADDRESS></ADDRESS>
	<ADDRESS2></ADDRESS2>
	<CITY></CITY>
	<STATE></STATE>
	<ZIPCODE></ZIPCODE>
	<AGENTID></AGENTID>
	<AGENTPASSWORD></AGENTPASSWORD>
	<SOURCE></SOURCE>
</ADDDEALERWALLET>
</VCAREOSS>
</VCAREOSSAPI>
List of status code and description.
Status Code Description
00 SUCCESS
01 Error Received from Carrier.
13 Password is invalid.
15 Zip code is invalid.
16 Vendor not found. Wrong credentials.
21 Invalid State.
71 Invalid OR empty address.
72 Invalid City.
102 Card type is required.
104 Credit Card Number is not valid.
105 Expiry Month is required.
107 Expiry Year is required.
108 Expiry Year is not valid.
110 Card Name is required.
111 Name on Card is invalid.
113 Zip Code is required.
116 City is required.
118 State is required.
130 Invalid Company ID.
168 Invalid Amount.
169 Company ID is required.
179 Amount should not be blank OR zero.
219 Payment type is required.
220 Card code is required.
227 Employee ID is required.
356 Agent ID cannot be blank.
438 Card Number is required.
439 Card type should be VISA, MASTERCARD, DISCOVER, AMERICAN EXPRESS.
440 Card code is invalid.
441 Your card has expired.
446 Month should be in two digits from 01 to 12.
457 Invalid Source.
707 Payment type Should be CASH, and CREDITCARD.
Sample Response XML
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <credentials>
        <vendorId>Vcarecorporation</vendorId>
        <referenceNumber>1111111</referenceNumber>
    </credentials>
    <AddDealerWallet>
        <statusCode>00</statusCode>
        <description>SUCCESS</description>
        <errorDescription>SUCCESS</errorDescription>
    </AddDealerWallet>
</VcareOssApi>
SUCCESS
Sample Fail Response: 1
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>01</statusCode>
	<description>FAIL</description>
	<errorDescription>Error Received from Carrier.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Error Received from Carrier.
Sample Fail Response: 2
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>13</statusCode>
	<description>FAIL</description>
	<errorDescription>Password is invalid.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Password is invalid.
Sample Fail Response: 3
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>15</statusCode>
	<description>FAIL</description>
	<errorDescription>Zip code is invalid.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Zip code is invalid.
Sample Fail Response: 4
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>16</statusCode>
	<description>FAIL</description>
	<errorDescription>Vendor not found. Wrong credentials.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Vendor not found. Wrong credentials.
Sample Fail Response: 5
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>21</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid State.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Invalid State.
Sample Fail Response: 6
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>71</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid OR empty address.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Invalid OR empty address.
Sample Fail Response: 7
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>72</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid City.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Invalid City.
Sample Fail Response: 8
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>102</statusCode>
	<description>FAIL</description>
	<errorDescription>Card type is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Card type is required.
Sample Fail Response: 9
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>104</statusCode>
	<description>FAIL</description>
	<errorDescription>Credit Card Number is not valid.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Credit Card Number is not valid.
Sample Fail Response: 10
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>105</statusCode>
	<description>FAIL</description>
	<errorDescription>Expiry Month is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Expiry Month is required.
Sample Fail Response: 11
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>107</statusCode>
	<description>FAIL</description>
	<errorDescription>Expiry Year is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Expiry Year is required.
Sample Fail Response: 12
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>108</statusCode>
	<description>FAIL</description>
	<errorDescription>Expiry Year is not valid.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Expiry Year is not valid.
Sample Fail Response: 13
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>110</statusCode>
	<description>FAIL</description>
	<errorDescription>Card Name is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Card Name is required.
Sample Fail Response: 14
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>111</statusCode>
	<description>FAIL</description>
	<errorDescription>Name on Card is invalid.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Name on Card is invalid.
Sample Fail Response: 15
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>113</statusCode>
	<description>FAIL</description>
	<errorDescription>Zip Code is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Zip Code is required.
Sample Fail Response: 16
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>116</statusCode>
	<description>FAIL</description>
	<errorDescription>City is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
City is required.
Sample Fail Response: 17
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>118</statusCode>
	<description>FAIL</description>
	<errorDescription>State is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
State is required.
Sample Fail Response: 18
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>130</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Company ID.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Invalid Company ID.
Sample Fail Response: 19
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>168</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Amount.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Invalid Amount.
Sample Fail Response: 20
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>169</statusCode>
	<description>FAIL</description>
	<errorDescription>Company ID is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Company ID is required.
Sample Fail Response: 21
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>179</statusCode>
	<description>FAIL</description>
	<errorDescription>Amount should not be blank OR zero.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Amount should not be blank OR zero.
Sample Fail Response: 22
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>219</statusCode>
	<description>FAIL</description>
	<errorDescription>Payment type is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Payment type is required.
Sample Fail Response: 23
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>220</statusCode>
	<description>FAIL</description>
	<errorDescription>Card code is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Card code is required.
Sample Fail Response: 24
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>227</statusCode>
	<description>FAIL</description>
	<errorDescription>Employee ID is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Employee ID is required.
Sample Fail Response: 25
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>356</statusCode>
	<description>FAIL</description>
	<errorDescription>Agent ID cannot be blank.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Agent ID cannot be blank.
Sample Fail Response: 26
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>438</statusCode>
	<description>FAIL</description>
	<errorDescription>Card Number is required.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Card Number is required.
Sample Fail Response: 27
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>439</statusCode>
	<description>FAIL</description>
	<errorDescription>Card type should be VISA, MASTERCARD, DISCOVER, AMERICAN EXPRESS.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Card type should be VISA, MASTERCARD, DISCOVER, AMERICAN EXPRESS.
Sample Fail Response: 28
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>440</statusCode>
	<description>FAIL</description>
	<errorDescription>Card code is invalid.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Card code is invalid.
Sample Fail Response: 29
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>441</statusCode>
	<description>FAIL</description>
	<errorDescription>Your card has expired.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Your card has expired.
Sample Fail Response: 30
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>446</statusCode>
	<description>FAIL</description>
	<errorDescription>Month should be in two digits from 01 to 12.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Month should be in two digits from 01 to 12.
Sample Fail Response: 31
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>457</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Source.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Invalid Source.
Sample Fail Response: 32
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<credentials>
	<vendorId>Vcarecorporation</vendorId>
	<referenceNumber>11111</referenceNumber>
</credentials>
<AddDealerWallet>
	<statusCode>707</statusCode>
	<description>FAIL</description>
	<errorDescription>Payment type Should be CASH, and CREDITCARD.</errorDescription>
</AddDealerWallet>
</VcareOssApi>
Payment type Should be CASH, and CREDITCARD.