TrustCommerce Gateway Guide

close

Services and Compatibility

Payment Gateway Company Name:
TrustCommerce
Services that work with Spreedly:
  • TrustCommerce
Supported operations:
Purchase, Authorize, Capture, Refund, Void, Verify, Store
Supported payment types:
Credit Card, Bank Account
Spreedly 3DS2 Global Supported
No
Gateway Specific 3DS2 Supported
No
Populate MIT GSF Support
No
Regions:
North America
API endpoint URL:
https://vault.trustcommerce.com/trans/

Authentication and Security

Specific names for credentials:
Login, Aggregator Id, Password

Onboarding Merchants in:

Additional Notes

In order to void purchase transactions, TrustCommerce requires the following configuration settings to be enabled:

  • Allow voids to process or settle on processing node
  • Enable void or reversal on Vault

To contact merchant boarding, please call (800) 915-1680 Option 5, or email MerchantBoarding@trustcommerce.com, or merchants may call their TrustCommerce Account Managers.

Technical support (found at the bottom of the TrustCommerce vault page) is also available, and will be able to put in a request for modification. Email Support: techsupport@trustcommerce.com Phone Support (800) 915-1680 Option 3 (6AM to 6PM PDT).

Adding a TrustCommerce gateway

To add a TrustCommerce gateway:


curl https://core.spreedly.com/v1/gateways.xml \
  -u 'C7cRfNJGODKh4Iu5Ox3PToKjniY:4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ' \
  -H 'Content-Type: application/xml' \
  -d '<gateway>
        <gateway_type>trust_commerce</gateway_type>
        <login>login</login>
        <password>password</password>
        <aggregator_id>abc123</aggregator_id>
      </gateway>'

<gateway>
  <token>Ir6jMuuxuwbByfsEqiFHmtjVVFq</token>
  <gateway_type>trust_commerce</gateway_type>
  <name>TrustCommerce</name>
  <description nil="true"/>
  <login>login</login>
  <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">false</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">true</supports_store>
    <supports_remove type="boolean">true</supports_remove>
    <supports_fraud_review type="boolean">false</supports_fraud_review>
  </characteristics>
  <credentials>
    <credential>
      <name>login</name>
      <value>login</value>
    </credential>
  </credentials>
  <gateway_specific_fields>
    <gateway_specific_field>custom_fields</gateway_specific_field>
  </gateway_specific_fields>
  <payment_methods>
    <payment_method>credit_card</payment_method>
    <payment_method>bank_account</payment_method>
    <payment_method>third_party_token</payment_method>
  </payment_methods>
  <state>retained</state>
  <redacted type="boolean">false</redacted>
  <sandbox type="boolean">false</sandbox>
  <mode>default</mode>
  <created_at type="dateTime">2023-02-08T19:23:04Z</created_at>
  <updated_at type="dateTime">2023-02-08T19:23:04Z</updated_at>
</gateway>


env = Spreedly::Environment.new('C7cRfNJGODKh4Iu5Ox3PToKjniY', '4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ', base_url: 'https://core.spreedly.com')
env.add_gateway(:trust_commerce, login: "Your login", password: "Your password", aggregator_id: "abc123")


#<Spreedly::Gateway:0x00007fb3371850f0
@token="39HcRsShM0OinswLdyR3pCdPaVR",
@created_at="2019-01-04T23:07:13Z",
@updated_at="2019-01-04T23:07:13Z",
@gateway_type="trust_commerce",
@state="retained",
@name="TrustCommerce",
@credentials={"login"=>"Your login"}>

Gateway specific fields

When interacting with a TrustCommerce gateway to run transactions, merchant-defined custom fields are supported via the custom_fields element under gateway_specific_fields. These can be set like so:


curl https://core.spreedly.com/v1/gateways/LlkjmEk0xNkcWrNixXa1fvNoTP4/purchase.xml \
  -u 'C7cRfNJGODKh4Iu5Ox3PToKjniY:4UIuWybmdythfNGPqAqyQnYha6s451ri0fYAo4p3drZUi7q2Jf4b7HKg8etDtoKJ' \
  -H 'Content-Type: application/xml' \
  -d '<transaction>
        <payment_method_token>aMGiduaF52UEuaIcEBiCr2ivpPC</payment_method_token>
        <amount>100</amount>
        <currency_code>USD</currency_code>
          <gateway_specific_fields>
            <trust_commerce>
              <custom_fields>
                <customfield1>value one</customfield1>
                <customfield2>another value</customfield2>
              </custom_fields>  
            </trust_commerce>
          </gateway_specific_fields>
      </transaction>'

<transaction>
    <on_test_gateway type="boolean">false</on_test_gateway>
    <created_at type="dateTime">2019-08-29T19:09:35Z</created_at>
    <updated_at type="dateTime">2019-08-29T19:09:38Z</updated_at>
    <succeeded type="boolean">true</succeeded>
    <state>succeeded</state>
    <token>N3uMsBEKbyLJ15911vkXhnPIQxH</token>
    <transaction_type>Purchase</transaction_type>
    <order_id nil="true"/>
    <ip nil="true"/>
    <description nil="true"/>
    <email nil="true"/>
    <merchant_name_descriptor nil="true"/>
    <merchant_location_descriptor nil="true"/>
    <gateway_specific_fields>
        <trust_commerce>
            <custom_fields>
                <customfield1>value one</customfield1>
                <customfield2>another value</customfield2>
            </custom_fields>
        </trust_commerce>
    </gateway_specific_fields>
    <gateway_specific_response_fields>
  </gateway_specific_response_fields>
    <gateway_transaction_id>026-0193736118</gateway_transaction_id>
    <gateway_latency_ms type="integer">2026</gateway_latency_ms>
    <stored_credential_initiator nil="true"/>
    <stored_credential_reason_type nil="true"/>
    <amount type="integer">1200</amount>
    <currency_code>USD</currency_code>
    <retain_on_success type="boolean">false</retain_on_success>
    <payment_method_added type="boolean">false</payment_method_added>
    <message key="messages.transaction_succeeded">Succeeded!</message>
    <gateway_token>Nrdj74NOWcMNuUQrHTazK0IDwLr</gateway_token>
    <gateway_type>trust_commerce</gateway_type>
    <shipping_address>
        <name>John Smith</name>
        <address1 nil="true"/>
        <address2 nil="true"/>
        <city nil="true"/>
        <state nil="true"/>
        <zip nil="true"/>
        <country nil="true"/>
        <phone_number nil="true"/>
    </shipping_address>
    <response>
        <success type="boolean">true</success>
        <message>The transaction was successful</message>
        <avs_code>0</avs_code>
        <avs_message nil="true"/>
        <cvv_code nil="true"/>
        <cvv_message nil="true"/>
        <pending type="boolean">false</pending>
        <result_unknown type="boolean">false</result_unknown>
        <error_code nil="true"/>
        <error_detail nil="true"/>
        <cancelled type="boolean">false</cancelled>
        <fraud_review nil="true"/>
        <created_at type="dateTime">2019-08-29T19:09:38Z</created_at>
        <updated_at type="dateTime">2019-08-29T19:09:38Z</updated_at>
    </response>
    <api_urls>
  </api_urls>
    <payment_method>
        <token>aMGiduaF52UEuaIcEBiCr2ivpPC</token>
        <created_at type="dateTime">2019-08-01T03:06:46Z</created_at>
        <updated_at type="dateTime">2019-08-29T18:06:07Z</updated_at>
        <email>john@example.com</email>
        <data nil="true"/>
        <storage_state>retained</storage_state>
        <test type="boolean">true</test>
        <metadata nil="true"/>
        <callback_url nil="true"/>
        <last_four_digits>1111</last_four_digits>
        <first_six_digits>411111</first_six_digits>
        <card_type>visa</card_type>
        <first_name>John</first_name>
        <last_name>Smith</last_name>
        <month type="integer">3</month>
        <year type="integer">2032</year>
        <address1 nil="true"/>
        <address2 nil="true"/>
        <city nil="true"/>
        <state nil="true"/>
        <zip nil="true"/>
        <country nil="true"/>
        <phone_number nil="true"/>
        <company nil="true"/>
        <full_name>John Smith</full_name>
        <eligible_for_card_updater type="boolean">true</eligible_for_card_updater>
        <shipping_address1 nil="true"/>
        <shipping_address2 nil="true"/>
        <shipping_city nil="true"/>
        <shipping_state nil="true"/>
        <shipping_zip nil="true"/>
        <shipping_country nil="true"/>
        <shipping_phone_number nil="true"/>
        <payment_method_type>credit_card</payment_method_type>
        <errors>
    </errors>
        <verification_value></verification_value>
        <number>XXXX-XXXX-XXXX-1111</number>
        <fingerprint nil="true"/>
    </payment_method>
</transaction>

Please refer to using a payment method for more information on how to send GSFs