VR Payment (formerly CardProcess) Gateway Guide

close

Services and Compatibility

Payment Gateway Company Name:
VR Payment (formerly CardProcess)
Services that work with Spreedly:
  • VR Payment (formerly CardProcess)
Supported operations:
Purchase, Authorize, Capture, Refund, Void, Verify, General Credit
Supported payment types:
Credit Card
Spreedly 3DS2 Global Supported
No
Gateway Specific 3DS2 Supported
No
Populate MIT GSF Support
No
Regions:
Europe
API endpoint URL:
https://vr-pay-ecommerce.de/v1/payments

Authentication and Security

Specific names for credentials:
User Id, Entity Id, Password

Onboarding Merchants in:

To add a VR Payment (formerly CardProcess) gateway:


curl https://core.spreedly.com/v1/gateways.xml \
  -u 'C7cRfNJGODKh4Iu5Ox3PToKjniY:4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ' \
  -H 'Content-Type: application/xml' \
  -d '<gateway>
        <gateway_type>cardprocess</gateway_type>
        <user_id>Your login</user_id>
        <password>Your password</password>
        <entity_id>Your entity ID</entity_id>
      </gateway>'

<gateway>
  <token>EIC0axBEmp5T9tIz2ELE7YvcysW</token>
  <gateway_type>cardprocess</gateway_type>
  <name>VR Payment (formerly CardProcess)</name>
  <description nil="true"/>
  <user_id>Your login</user_id>
  <characteristics>
    <supports_purchase type="boolean">true</supports_purchase>
    <supports_authorize type="boolean">true</supports_authorize>
    <supports_capture type="boolean">true</supports_capture>
    <supports_credit type="boolean">true</supports_credit>
    <supports_general_credit type="boolean">true</supports_general_credit>
    <supports_void type="boolean">true</supports_void>
    <supports_verify type="boolean">true</supports_verify>
    <supports_reference_purchase type="boolean">false</supports_reference_purchase>
    <supports_purchase_via_preauthorization type="boolean">false</supports_purchase_via_preauthorization>
    <supports_offsite_purchase type="boolean">false</supports_offsite_purchase>
    <supports_offsite_authorize type="boolean">false</supports_offsite_authorize>
    <supports_3dsecure_purchase type="boolean">false</supports_3dsecure_purchase>
    <supports_3dsecure_authorize type="boolean">false</supports_3dsecure_authorize>
    <supports_store type="boolean">false</supports_store>
    <supports_remove type="boolean">false</supports_remove>
    <supports_fraud_review type="boolean">false</supports_fraud_review>
    <supports_disburse type="boolean">false</supports_disburse>
  </characteristics>
  <credentials>
    <credential>
      <name>user_id</name>
      <value>Your login</value>
    </credential>
  </credentials>
  <gateway_specific_fields>
  </gateway_specific_fields>
  <payment_methods>
    <payment_method>credit_card</payment_method>
  </payment_methods>
  <state>retained</state>
  <redacted type="boolean">false</redacted>
  <created_at type="dateTime">2019-01-31T03:22:45Z</created_at>
  <updated_at type="dateTime">2019-01-31T03:22:45Z</updated_at>
</gateway>


env = Spreedly::Environment.new('C7cRfNJGODKh4Iu5Ox3PToKjniY', '4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ', base_url: 'https://core.spreedly.com')
env.add_gateway(:cardprocess, user_id: "Your user ID", password: "Your password", entity_id: "Your entity ID")


#<Spreedly::Gateway:0x00007fd08906a4f8
@token="TEwAZBJlpFj1vkKhK5ha0JcfrKL",
@created_at="2019-01-31T03:22:45Z",
@updated_at="2019-01-31T03:22:45Z",
@gateway_type="cardprocess",
@state="retained",
@name="VR Payment (formerly CardProcess)",
@credentials={"user_id"=>"Your user ID"}>