Submit Installment Payment - ccinstallsale
This topic describes the message parameters for Credit Card Installment Sale transaction processing, which you can submit using the XML API integration method. Refer to the Integration Methods section for more information.
The ccinstallsale
transaction allows you to run a credit card installment payment outside of its billing cycle. This will increase the payment number.
In this section:
For the entire list of API endpoints, refer to API Endpoints.
Request
Field name | Description | Required | Length | Data type |
---|---|---|---|---|
ssl_merchant_id | Merchant ID Elavon-assigned Converge Account ID (AID). | Required | 6 or 7 | numeric |
ssl_user_id | Converge user ID The user ID with Hosted Payment API user status that can send transaction requests through the terminal. | Required | 15 | alphanumeric |
ssl_pin | Terminal ID Unique identifier of the terminal that will process the transaction request and submit to the Converge gateway. The ssl_user_id sending the transaction request must be associated with the terminal that will process the request. | Required | 64 | alphanumeric |
ssl_transaction_type | Transaction Type Valid value: ccinstallsale | Required | 20 | alphanumeric |
ssl_installment_id | Installment ID Unique identifier of the installment record to be authorized. | Required | 50 | alphanumeric |
[Tokenization] | Use only on terminals that are set up with the Tokenization terminal option. | |||
ssl_add_token | Add to Card Manager Indicator Indicates whether to generate and store the token in Card Manager. Valid values:
| Optional | 1 | alphanumeric |
ssl_first_name | First Name First name on the cardholder’s / customer’s account or billing address. Required if ssl_add_token is set to Y. | Conditional | 50 | alphanumeric |
ssl_last_name | Last Name Last name on the cardholder’s / customer’s account or billing address. Required if ssl_add_token is set to Y. | Conditional | 50 | alphanumeric |
ssl_get_token | Generate Token Indicator Indicates whether to generate a token when submitting the card data. Valid values:
| Optional | 1 | alphanumeric |
[Card On File] | ||||
ssl_merchant_initiated_unscheduled | Merchant-Initiated Unscheduled Transaction Indicator Indicates the transaction was initiated by a merchant using a stored credential (token or stored card number) for a fixed or variable amount that does not occur on a scheduled or regularly occurring transaction date. Valid values:
| Optional | 1 | alphanumeric |
Response
Field name | Description |
---|---|
ssl_result | Transaction Outcome An ssl_result = 0 indicates an approved transaction.An ssl_result not equal to 0 indicates a declined and unauthorized transaction. |
ssl_result_message | Transaction Result Message Refer to the Payment Card Response Codes section for an extensive list of possible returned messages. |
ssl_issuer_response | Original Issuer Response The issuer response returned during the authorization attempt. An ssl_issuer_response = 00 indicates success.An ssl_issuer_response not equal to 00 indicates a decline or failure. |
ssl_txn_id | Transaction ID Unique identifier of the transaction. |
ssl_txn_time | Processing Date and Time Indicates when Converge processed the transaction. Format: MM/DD/YYYY hh:mm:ss AM/PM Example: 03/18/2022 10:34:10 AM |
ssl_approval_code | Transaction Approval Code Unique code returned by the credit card processor that indicates the approval status of the transaction. |
ssl_amount | Total Authorized/Approved Transaction Amount Returned based on merchant setup. |
ssl_card_short_description | Short Card Brand Name Valid values: AMEX , CUP , DISC , MC , PP , and VISA |
ssl_card_number | Masked Card Number Converge only returns the first 2 or last 4 digits of the regular PAN, or the last 4 digits of the actual card number if it is an association token (example, ApplePay). |
ssl_exp_date | Card’s Expiry Date Returned based on merchant setup. |
ssl_installment_id | Installment ID Unique identifier of the submitted installment record. Important: Returned only if ssl_result_message = SUCCESS. |
ssl_billing_cycle | Billing Cycle |
ssl_next_payment_date | Next Payment Due Date |
ssl_start_payment_date | Payment Start Date The date when the first payment started. If recently added, the start date is the same as the next payment due date. Format: MM/DD/YYYY |
ssl_number_of_payments | Number of Payments The current number of payments run on the system. Returned by Converge. |
ssl_total_installments | Total Number of Payments |
ssl_invoice_number | Invoice Number The invoice number or ticket number sent in the original request. Returned based on merchant setup. |
[Tokenization] | Returned only if ssl_add_token = Y. |
ssl_token | Token Generated from the credit card number. |
ssl_token_provider | Credit Card Token Provider This code indicates the provider for the token. This value is also visible in the Converge UI. Valid values:
|
[Error] | Returned only if an error occurs. Refer to the Error Codes section for more information. |
errorCode | Error Code Typically, when the transaction failed validation or the request is incorrect. This will prevent the transaction from going to authorization. This is a numeric field. |
errorMessage | Error Message Detailed explanation of the error. This field may be changed based on merchant configuration in the user interface. |
errorName | Error Name Error name or reason for the error. |
Example
error_outline
important
- In these examples, you will have to change the data values, such as
my_merchant_id
,my_user_id
,my_pin
, and transaction data to match your Converge account and meet the needs of your website. - Code samples provided are for demonstration only and should not be used for live transactions. All sensitive merchant data, including transaction amounts and your Converge credentials, should be placed in server side code.
Request
xmldata=
<txn>
<ssl_merchant_id>my_merchant_id</ssl_merchant_id>
<ssl_user_id>my_user_id</ssl_user_id>
<ssl_pin>my_pin</ssl_pin>
<ssl_test_mode>false</ssl_test_mode>
<ssl_transaction_type>ccinstallsale</ssl_transaction_type>
<ssl_installment_id>280222A41-C50F9757-C7F9-4684-9B7F-77393F69E77E</ssl_installment_id>
</txn>
Response
<txn>
<ssl_company></ssl_company>
<ssl_number_of_payments>2</ssl_number_of_payments>
<ssl_phone></ssl_phone>
<ssl_ship_to_last_name></ssl_ship_to_last_name>
<ssl_amount>4.00</ssl_amount>
<ssl_transaction_currency>USD</ssl_transaction_currency>
<ssl_card_short_description>MC</ssl_card_short_description>
<ssl_start_payment_date>03/29/2022</ssl_start_payment_date>
<ssl_avs_address></ssl_avs_address>
<ssl_salestax>0.00</ssl_salestax>
<ssl_recurring_batch_count>135</ssl_recurring_batch_count>
<ssl_ps2000_data>MMCC813176 0330</ssl_ps2000_data>
<ssl_state></ssl_state>
<ssl_ship_to_zip></ssl_ship_to_zip>
<ssl_ship_to_phone></ssl_ship_to_phone>
<ssl_ship_to_city></ssl_ship_to_city>
<ssl_ship_to_address1></ssl_ship_to_address1>
<ssl_ship_to_address2></ssl_ship_to_address2>
<ssl_merchant_initiated_unscheduled>N</ssl_merchant_initiated_unscheduled>
<ssl_issuer_response>00</ssl_issuer_response>
<ssl_last_name></ssl_last_name>
<ssl_billing_cycle>MONTHLY</ssl_billing_cycle>
<ssl_card_number>54**********0174</ssl_card_number>
<ssl_oar_data>010001075103300109280330027344400000000000207264MCC813176</ssl_oar_data>
<ssl_result>0</ssl_result>
<ssl_txn_id>250422E3B-9F2376CD-2CA6-49A2-A4C9-1D6AD22CF0BC</ssl_txn_id>
<ssl_avs_response> </ssl_avs_response>
<ssl_approval_code>572805</ssl_approval_code>
<ssl_email></ssl_email>
<ssl_avs_zip></ssl_avs_zip>
<ssl_total_installments>10</ssl_total_installments>
<ssl_txn_time>04/25/2022 05:11:12 PM</ssl_txn_time>
<ssl_exp_date>1224</ssl_exp_date>
<ssl_address2></ssl_address2>
<ssl_country></ssl_country>
<ssl_card_type>CREDITCARD</ssl_card_type>
<ssl_customer_code>1234</ssl_customer_code>
<ssl_installment_id>280222A41-C50F9757-C7F9-4684-9B7F-77393F69E77E</ssl_installment_id>
<ssl_transaction_type>CCINSTALLSALE</ssl_transaction_type>
<ssl_next_payment_date>04/29/2022</ssl_next_payment_date>
<ssl_ship_to_first_name></ssl_ship_to_first_name>
<ssl_ship_to_company></ssl_ship_to_company>
<ssl_ship_to_state></ssl_ship_to_state>
<ssl_account_balance>0.00</ssl_account_balance>
<ssl_ship_to_country></ssl_ship_to_country>
<ssl_city></ssl_city>
<ssl_result_message>APPROVAL</ssl_result_message>
<ssl_first_name></ssl_first_name>
<ssl_skip_payment>N</ssl_skip_payment>
<ssl_cvv2_response></ssl_cvv2_response>
<ssl_partner_app_id>01</ssl_partner_app_id>
</txn>