Skip to content

Instantly share code, notes, and snippets.

View courtesysoft's full-sized avatar

Courtesy Soft courtesysoft

  • Courtesy Software
View GitHub Profile
@courtesysoft
courtesysoft / elavonCurl.php
Created April 6, 2023 21:07
Communicate to Elavon Converge XML API using raw PHP
//This should successfully connect to Elavon's Converge system using the XML api, as of 04/05/2023
//As of today, this isn't documented in: https://developer.elavon.com/na/docs/converge/1.0.0/integration-guide/integration_methods/xmlapi
//Please give this a star on github if i saved you a headache!
$postData = [];
$postData['ssl_merchant_id'] = "";
$postData['ssl_user_id'] = "";
$postData['ssl_pin'] = "";
$postData['ssl_transaction_type'] = "ccsale";
$postData['ssl_amount'] = "1.00";