NewSignUpPayment

This API is used to take the payment via credit card or a debit card on the subscriber's account or refund.

Payments can be accepted for Add On, Equipment purchase, New signup plan purchase or on Plan Change.

End Point https://www.vcareapi.com/vcareOssApi/NewSignUpPayment/
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.
REFERENCE NUMBER string 123456789 Required Auto generated unique reference number is required to be passed with each transaction.
ACTION string 123456 Required "Sale"- This will charge the credit/debit card. "Credit OR void"- This is used to refund the amount back to the card. Expected Values:"sale","void", "credit"
PAYMENT METHOD string credit_card Optional If Empty Default value "credit_card"
  • credit_card
  • cash
  • skip_payment
  • mywallet
CUSTOMER ID string 123456 Conditional Auto generated customer account number. This is returned in GetCustomerInfo. If enrollment id empty then customer is Required.
ENROLLMENT ID string AN12345 Conditional The enrollment id is returned in the CheckServiceAvailability call and you are required to pass the same enrollment id for the enrollment you are attempting If enrollment id empty then customer is Required.
COMPANY ID Numeric 28 Required This can be obtained using GetCompany API Numeric
TAXREQUIRED string Y Required This defines whether the TOTALPAYMENT is inclusive of taxes or not. Y will indicate that system needs to charge tax. Telgoo5 will calculate the tax amount on top of the TOTALPAYMENT value passed. N will indicate that either MVNO would not like to charge tax or TOTALPAYMENT includes tax. MVNO can use another API called GetTaxDetails to get the Tax amount. Y or N
TOTALPAYMENT string 30 Required This is the amount that will be charged to the debit/credit card when TAXREQUIRED=N.
CARDTYPE string VISA Conditional This is the type of the card. Required if ACTION="sale" or "auth". VISA, MASTER, DISCOVER, AMEX
CARD NUMBER Numeric 4111111111111110 Conditional This is the credit/debit card number. Required if ACTION="sale" or "auth". Max=16 digits
CVV NUMBER Numeric 234 Conditional This is the CVV number of the card. Required if ACTION="sale" or "auth". Max=4 digits
EXPIRATION MONTH Numeric 11 Conditional This is the expiration month of the credit/debit card. Required if ACTION="sale" or "auth".Max. digits=2
EXPIRATION YEAR Numeric 2018 Conditional This is the expiration year of the credit/debit. Required if ACTION="sale" or "auth".Exactly 4 digits.
NAME ON CARD string John Doe Conditional This is the name on the credit/debit. Required if ACTION="sale" or "auth".
BILLING STATE string CA Conditional This is the state of the registered billing address in the bank account to which the card is associated. Required if ACTION="sale" or "auth". State should be standard abbreviated form.
BILLING ADDRESS string 123 Main st Conditional This is the Billing address line 1 for the associated bank account. Required if ACTION="sale" or "auth". Should allow only letters, numbers, space and: hyphen ; forward slash Max length for the fields - 50 symbols. Cannot contain phrases "PO Box" or "P.O. Box".
BILLING ADDRESS2 string Apt 1 Conditional Required if ACTION="sale" or "auth". This is the Billing address line 2 for the associated bank account. Should allow only letters, numbers, space and: hyphen ; forward slash Max length for the fields - 50 symbols. Cannot contain phrases "PO Box" or "P.O. Box".
BILLING CITY string San Jose Conditional Required if ACTION="sale" or "auth". This is the Billing address City for the associated bank account. Should allow only letters, hyphen and space.
BILLING ZIPCODE Numeric 90001 Conditional Required if ACTION="sale" or "auth". This is the Billing address Zip Code for the associated bank account. Should not allow letters and special characters, only numbers.Should be exactly 5 digits.
INVOICE TYPE ID Numeric 30 Required The IDs which are allowed to be passed in this parameter are:
  • 4 - Website add minutes
  • 54 - Equipment Purchase
  • 56 - Website Plan Purchase
  • 69 - New Signup Plan Purchase
  • 58 - CSR MDN Change
  • 60 - Website Bill Pay
  • 147 - EBBP Equipment Purchase
 
TRANSACTION ID string VCARE1508509205 Conditional Used only in case of refund.This is returned in the response when the successfull payment is made. This can also be obtained using the GetInvoiceDetails API. Required, If ACTION is "credit".
INVOICE NUMBER string 2016-05-1 Optional Used only in case of refund. This is returned in the response when the successfull payment is made.This can also be obtained using the GetInvoiceDetails XML API. Required, If ACTION is "credit".
LAST 4 DIGITS OF CREDIT/DEBIT CARD Numeric 4683 Optional Used only in case of refund. This needs to be obtained from the customer. Required, If ACTION is "credit".
TOTAL COST AND TAX Numebric 30 Optional This tag use for taken plan, handset cost and tax. Input value example : PLAN_COST::PLAN_COST_TAX::DEVICE_COST::DEVICE_COST_TAX::ACTIVATION_FEE::ACTIVATION_FEE_TAX::COPAY_COST
TOTAL TAX Numebric 30 Optional Tag use for sum of plan and handset tax.
ESN string 8901260713156280780 Optional ESN number. Can be alpha numeric. Max length = 25
MDN Numeric 1234567890 Optional MDN/TELEPHONE NUMBBER Should be 10 digit mobile number.
HANDOVER TYPE string Handover Optional This determines the type of enrollment.
AGENTID string John Doe Required This is the Telgoo5 user id.For the Agent/Employee who is sending the API request.
AGENTPASSWORD string John Doe 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.
SOURCE string API Optional Source of the order/application Expected Value:API, TABLET, IVR, WEBSITE,POS
Sample Request XML
<?xml version="1.0" encoding="utf-8"?>
<VCAREOSSAPI xmlns="http://www.oss.vcarecorporation.com/oss" 
mlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<CREDENTIALS>
	<VENDORID></VENDORID>
	<USERNAME></USERNAME>
	<PASSWORD></PASSWORD>
	<PIN></PIN>
	<REFERENCENUMBER></REFERENCENUMBER>
</CREDENTIALS>
<VCAREOSS>
 <NEWSIGNUPPAYMENT>
	<ACTION></ACTION>
	<PAYMENTMETHOD></PAYMENTMETHOD>
	<CUSTOMERID></CUSTOMERID>
	<ENROLLMENTID></ENROLLMENTID>
	<COMPANYID></COMPANYID>
	<TAXREQUIRED></TAXREQUIRED>
	<TOTALPAYMENT></TOTALPAYMENT>
	<CARDTYPE></CARDTYPE>
	<CARDVALUE></CARDVALUE>
	<CARDCODE></CARDCODE>
	<EXPIRATION_MONTH></EXPIRATION_MONTH>
	<EXPIRATION_YEAR></EXPIRATION_YEAR>
	<NAMEONCARD></NAMEONCARD>
	<BILLINGSTATE></BILLINGSTATE>
	<BILLINGADDRESS></BILLINGADDRESS>
	<BILLINGADDRESS2></BILLINGADDRESS2>
	<BILLINGCITY></BILLINGCITY>
	<BILLINGZIPCODE></BILLINGZIPCODE>
	<INVOICETYPEID></INVOICETYPEID>
	<TRANSACTIONID></TRANSACTIONID>
	<INVOICENUMBER></INVOICENUMBER>
	<LAST4DIGCC></LAST4DIGCC>
	<COST_TAX></COST_TAX>
	<!-- PlanCost::PlanTax::HandsetCost::HandsetTax-->
	<TOTALTAX></TOTALTAX>
	<ESN></ESN>
	<MDN></MDN>
	<HANDOVER_TYPE></HANDOVER_TYPE>
	<AGENTID></AGENTID>
	<AGENTPASSWORD></AGENTPASSWORD>
	<SOURCE></SOURCE>
 </NEWSIGNUPPAYMENT>
</VCAREOSS>
</VCAREOSSAPI>
List of status code, description and resolution.
Status Code Description How to Resolve?
00 SUCCESS SUCCESS
13 Password is invalid. Provide a valid Password.
15 Zip code is invalid. Please enter valid zip code.
16 Vendor not found. Wrong credentials. Please enter valid vendor credentials.
21 Invalid State. Provide a valid State
25 Customer ID is invalid. Provide a valid Customer ID.
72 Invalid City. Please provide valid City.
102 Card type is required. Card Type can not be blank. You should enter a valid Card Type.
105 Expiry Month is required. Expiry month cannot be blank. You should enter a valid expire month.
107 Expiry Year is required. Expire year cannot be blank. You should enter a valid expire year.
109 Credit Card Number is required. Credit card number cannot be blank. You should enter a valid Credit card number.
110 Card Name is required. Card name cannot be blank. You should enter a valid Card name.
111 Name on Card is invalid. Please provide a valid Name on Card.
113 Zip Code is required. Zip code cannot be blank. You should enter a valid Zip code.
116 City is required. City cannot be blank. You should enter a valid City.
118 State is required. State cannot be blank. You should enter a valid State.
120 Billing Address is required. Billing address cannot be blank. You should enter a valid billing address.
130 Invalid Company ID. Please provide valid company id.
168 Invalid Amount. Please provide a valid Amount.
169 Company ID is required. Please provide company ID.
179 Amount should not be blank OR zero. Please provide amount. Amount cannot be left blank OR zero.
214 Action should not be blank. Please provide valid value as Action should not be blank.
215 Invalid Card Details. Please provide a valid Card Details.
220 Card code is required. Please provide Card code.
356 Agent ID cannot be blank. Please provide Agent ID as it cannot be blank.
395 Invoice number should not be blank. Please provide Invoice number as it cannot be blank.
457 Invalid Source. Please provide a valid Source. Given value is invalid for Source.
533 Invalid invoice type ID. Provide a valid invoice type ID.
685 Transaction ID should not be empty. Provide a valid Transaction ID. Transaction ID should not be blank.
686 Invoice type ID is required. Please provide a valid value as Invoice type ID is required.
738 Customer ID OR Enrollment ID not found in our system. Customer ID OR Enrollment ID not found in our system.
Sample Response
<?xml version="1.0" encoding="utf-8"?>
<VcareOssApi xmlns="http://www.oss.vcarecorporation.com/oss" 
mlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <credentials>
        <vendorId>Vcarecorporation</vendorId>
        <referenceNumber>11111</referenceNumber>
    </credentials>
    <NewSignUpPayment>
        <statusCode>00</statusCode>
        <description>SUCCESS</description>
        <transactionid>SUCCESS</transactionid>
        <invoicenumber>4141</invoicenumber>
    </NewSignUpPayment>
</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>
<NewSignUpPayment>
	<statusCode>13</statusCode>
	<description>FAIL</description>
	<errorDescription>Password is invalid.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Password is invalid.
How to Resolve?: Provide a valid Password.
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>
<NewSignUpPayment>
	<statusCode>15</statusCode>
	<description>FAIL</description>
	<errorDescription>Zip code is invalid.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Zip code is invalid.
How to Resolve?: Please enter valid zip code.
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>
<NewSignUpPayment>
	<statusCode>16</statusCode>
	<description>FAIL</description>
	<errorDescription>Vendor not found. Wrong credentials.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Vendor not found. Wrong credentials.
How to Resolve?: Please enter valid vendor credentials.
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>
<NewSignUpPayment>
	<statusCode>21</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid State.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid State.
How to Resolve?: Provide a valid State
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>
<NewSignUpPayment>
	<statusCode>25</statusCode>
	<description>FAIL</description>
	<errorDescription>Customer ID is invalid.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Customer ID is invalid.
How to Resolve?: Provide a valid Customer ID.
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>
<NewSignUpPayment>
	<statusCode>72</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid City.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid City.
How to Resolve?: Please provide valid City.
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>
<NewSignUpPayment>
	<statusCode>102</statusCode>
	<description>FAIL</description>
	<errorDescription>Card type is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Card type is required.
How to Resolve?: Card Type can not be blank. You should enter a valid Card Type.
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>
<NewSignUpPayment>
	<statusCode>105</statusCode>
	<description>FAIL</description>
	<errorDescription>Expiry Month is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Expiry Month is required.
How to Resolve?: Expiry month cannot be blank. You should enter a valid expire month.
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>
<NewSignUpPayment>
	<statusCode>107</statusCode>
	<description>FAIL</description>
	<errorDescription>Expiry Year is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Expiry Year is required.
How to Resolve?: Expire year cannot be blank. You should enter a valid expire year.
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>
<NewSignUpPayment>
	<statusCode>109</statusCode>
	<description>FAIL</description>
	<errorDescription>Credit Card Number is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Credit Card Number is required.
How to Resolve?: Credit card number cannot be blank. You should enter a valid Credit card number.
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>
<NewSignUpPayment>
	<statusCode>110</statusCode>
	<description>FAIL</description>
	<errorDescription>Card Name is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Card Name is required.
How to Resolve?: Card name cannot be blank. You should enter a valid Card name.
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>
<NewSignUpPayment>
	<statusCode>111</statusCode>
	<description>FAIL</description>
	<errorDescription>Name on Card is invalid.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Name on Card is invalid.
How to Resolve?: Please provide a valid Name on Card.
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>
<NewSignUpPayment>
	<statusCode>113</statusCode>
	<description>FAIL</description>
	<errorDescription>Zip Code is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Zip Code is required.
How to Resolve?: Zip code cannot be blank. You should enter a valid Zip code.
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>
<NewSignUpPayment>
	<statusCode>116</statusCode>
	<description>FAIL</description>
	<errorDescription>City is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: City is required.
How to Resolve?: City cannot be blank. You should enter a valid City.
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>
<NewSignUpPayment>
	<statusCode>118</statusCode>
	<description>FAIL</description>
	<errorDescription>State is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: State is required.
How to Resolve?: State cannot be blank. You should enter a valid State.
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>
<NewSignUpPayment>
	<statusCode>120</statusCode>
	<description>FAIL</description>
	<errorDescription>Billing Address is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Billing Address is required.
How to Resolve?: Billing address cannot be blank. You should enter a valid billing address.
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>
<NewSignUpPayment>
	<statusCode>130</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Company ID.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid Company ID.
How to Resolve?: Please provide valid company id.
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>
<NewSignUpPayment>
	<statusCode>168</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Amount.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid Amount.
How to Resolve?: Please provide a valid Amount.
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>
<NewSignUpPayment>
	<statusCode>169</statusCode>
	<description>FAIL</description>
	<errorDescription>Company ID is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Company ID is required.
How to Resolve?: Please provide company ID.
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>
<NewSignUpPayment>
	<statusCode>179</statusCode>
	<description>FAIL</description>
	<errorDescription>Amount should not be blank OR zero.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Amount should not be blank OR zero.
How to Resolve?: Please provide amount. Amount cannot be left blank OR zero.
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>
<NewSignUpPayment>
	<statusCode>214</statusCode>
	<description>FAIL</description>
	<errorDescription>Action should not be blank.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Action should not be blank.
How to Resolve?: Please provide valid value as Action should not be blank.
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>
<NewSignUpPayment>
	<statusCode>215</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Card Details.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid Card Details.
How to Resolve?: Please provide a valid Card Details.
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>
<NewSignUpPayment>
	<statusCode>220</statusCode>
	<description>FAIL</description>
	<errorDescription>Card code is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Card code is required.
How to Resolve?: Please provide Card code.
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>
<NewSignUpPayment>
	<statusCode>356</statusCode>
	<description>FAIL</description>
	<errorDescription>Agent ID cannot be blank.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Agent ID cannot be blank.
How to Resolve?: Please provide Agent ID as it cannot be blank.
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>
<NewSignUpPayment>
	<statusCode>395</statusCode>
	<description>FAIL</description>
	<errorDescription>Invoice number should not be blank.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invoice number should not be blank.
How to Resolve?: Please provide Invoice number as it 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>
<NewSignUpPayment>
	<statusCode>457</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid Source.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid Source.
How to Resolve?: Please provide a valid Source. Given value is invalid for Source.
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>
<NewSignUpPayment>
	<statusCode>533</statusCode>
	<description>FAIL</description>
	<errorDescription>Invalid invoice type ID.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invalid invoice type ID.
How to Resolve?: Provide a valid invoice type ID.
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>
<NewSignUpPayment>
	<statusCode>685</statusCode>
	<description>FAIL</description>
	<errorDescription>Transaction ID should not be empty.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Transaction ID should not be empty.
How to Resolve?: Provide a valid Transaction ID. Transaction ID should not be blank.
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>
<NewSignUpPayment>
	<statusCode>686</statusCode>
	<description>FAIL</description>
	<errorDescription>Invoice type ID is required.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Invoice type ID is required.
How to Resolve?: Please provide a valid value as Invoice type ID is required.
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>
<NewSignUpPayment>
	<statusCode>738</statusCode>
	<description>FAIL</description>
	<errorDescription>Customer ID OR Enrollment ID not found in our system.</errorDescription>
</NewSignUpPayment>
</VcareOssApi>
Error Description: Customer ID OR Enrollment ID not found in our system.
How to Resolve?: Customer ID OR Enrollment ID not found in our system.